|
From: xiong w. <wan...@gm...> - 2010-12-08 10:33:46
|
Dears,
steps:
postgres=# create sequence seq start with 1;
CREATE SEQUENCE
postgres=# create table t(a int default nextval('seq'), b int);
ERROR: Could not commit (or autocommit) data node connection
datanode log as follows:
LOG: statement: create table t(a int default nextval('seq'), b int);
ERROR: relation "seq" does not exist
When I checked the source code, I found sequence can't be created on
datanodes. Could you explain why?
Regards,
Benny
|