You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(10) |
May
(17) |
Jun
(3) |
Jul
|
Aug
|
Sep
(8) |
Oct
(18) |
Nov
(51) |
Dec
(74) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(47) |
Feb
(44) |
Mar
(44) |
Apr
(102) |
May
(35) |
Jun
(25) |
Jul
(56) |
Aug
(69) |
Sep
(32) |
Oct
(37) |
Nov
(31) |
Dec
(16) |
2012 |
Jan
(34) |
Feb
(127) |
Mar
(218) |
Apr
(252) |
May
(80) |
Jun
(137) |
Jul
(205) |
Aug
(159) |
Sep
(35) |
Oct
(50) |
Nov
(82) |
Dec
(52) |
2013 |
Jan
(107) |
Feb
(159) |
Mar
(118) |
Apr
(163) |
May
(151) |
Jun
(89) |
Jul
(106) |
Aug
(177) |
Sep
(49) |
Oct
(63) |
Nov
(46) |
Dec
(7) |
2014 |
Jan
(65) |
Feb
(128) |
Mar
(40) |
Apr
(11) |
May
(4) |
Jun
(8) |
Jul
(16) |
Aug
(11) |
Sep
(4) |
Oct
(1) |
Nov
(5) |
Dec
(16) |
2015 |
Jan
(5) |
Feb
|
Mar
(2) |
Apr
(5) |
May
(4) |
Jun
(12) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
(11) |
2
(7) |
3
(6) |
4
|
5
|
6
(1) |
7
(2) |
8
(2) |
9
(6) |
10
(2) |
11
|
12
(1) |
13
(6) |
14
(5) |
15
(4) |
16
(5) |
17
(4) |
18
|
19
|
20
(1) |
21
(3) |
22
(2) |
23
(1) |
24
|
25
|
26
|
27
(5) |
28
|
29
|
30
|
31
|
|
From: Mason S. <mas...@en...> - 2010-12-09 13:39:24
|
On 12/8/10 8:11 PM, xiong wang wrote: > Hi Koichi, > > Yes, I consider sequence should be created on datanodes but not only > on coordinators. But all the sequence value should be from GTM. > > Regards, > Benny > 2010/12/9 Koichi Suzuki <ko...@in...>: >> In the current implementation, sequence value is supplied by GTM, as you >> know. It is assumed that this value is supplied to the datanode through >> the coordinator. In the case of your case, default value must be handled >> by the datanode and the datanode has to inquire GTM for the nextval of the >> sequence. >> >> I'm afraid this is missing in the current code. >> --- >> Koichi Benny, In general we try and have the Coordinator manage everything and provide the data nodes with everything they need. I can think of a case that we should test though, when COPY is used. We would have to make sure that we are providing values for the sequence column if it is not included in an explicit column list. Thanks, Mason >> (2010年12月08日 19:33), xiong wang wrote: >>> 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 >>> >>> >>> ------------------------------------------------------------------------------ >>> What happens now with your Lotus Notes apps - do you make another costly >>> upgrade, or settle for being marooned without product support? Time to >>> move >>> off Lotus Notes and onto the cloud with Force.com, apps are easier to >>> build, >>> use, and manage than apps on traditional platforms. Sign up for the Lotus >>> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d >>> _______________________________________________ >>> Postgres-xc-developers mailing list >>> Pos...@li... >>> https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers >>> >> > ------------------------------------------------------------------------------ > This SF Dev2Dev email is sponsored by: > > WikiLeaks The End of the Free Internet > http://p.sf.net/sfu/therealnews-com > _______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |
From: Mason S. <mas...@en...> - 2010-12-09 13:30:16
|
Thanks for reporting this. This is an issue that is already in the tracker, issue 3019765. Thanks, Mason On 12/9/10 6:06 AM, xiong wang wrote: > Dears, > > steps: > > postgres=# begin; > BEGIN > postgres=# create sequence seq2; > CREATE SEQUENCE > postgres=# rollback; > ROLLBACK > postgres=# create sequence seq2; > ERROR: GTM error, could not create sequence > > GTM log: > 2:1089829184:2010-12-09 19:02:41.941 CST -LOG: Sequence with the > given key already exists > LOCATION: seq_add_seqinfo, gtm_seq.c:169 > 3:1089829184:2010-12-09 19:02:41.941 CST -ERROR: Failed to open a new sequence > LOCATION: ProcessSequenceInitCommand, gtm_seq.c:751 > > When rollback a transaction, the sequence created in the transaction > cann't be removed from GTM. > > Regards, > Benny > > ------------------------------------------------------------------------------ > This SF Dev2Dev email is sponsored by: > > WikiLeaks The End of the Free Internet > http://p.sf.net/sfu/therealnews-com > _______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers -- Mason Sharp EnterpriseDB Corporation The Enterprise Postgres Company This e-mail message (and any attachment) is intended for the use of the individual or entity to whom it is addressed. This message contains information from EnterpriseDB Corporation that may be privileged, confidential, or exempt from disclosure under applicable law. If you are not the intended recipient or authorized to receive this for the intended recipient, any use, dissemination, distribution, retention, archiving, or copying of this communication is strictly prohibited. If you have received this e-mail in error, please notify the sender immediately by reply e-mail and delete this message. |
From: xiong w. <wan...@gm...> - 2010-12-09 11:06:42
|
Dears, steps: postgres=# begin; BEGIN postgres=# create sequence seq2; CREATE SEQUENCE postgres=# rollback; ROLLBACK postgres=# create sequence seq2; ERROR: GTM error, could not create sequence GTM log: 2:1089829184:2010-12-09 19:02:41.941 CST -LOG: Sequence with the given key already exists LOCATION: seq_add_seqinfo, gtm_seq.c:169 3:1089829184:2010-12-09 19:02:41.941 CST -ERROR: Failed to open a new sequence LOCATION: ProcessSequenceInitCommand, gtm_seq.c:751 When rollback a transaction, the sequence created in the transaction cann't be removed from GTM. Regards, Benny |
From: Koichi S. <ko...@in...> - 2010-12-09 01:15:12
|
This should be put into the track. I discussed with Michael and found that the issue is not that simple because we should consider the case of the replicated table. It is not correct to get sequence value directly from GTM to Datanode in this case. Coordinator should handle this. Regards; --- Koichi (2010年12月09日 10:11), xiong wang wrote: > Hi Koichi, > > Yes, I consider sequence should be created on datanodes but not only > on coordinators. But all the sequence value should be from GTM. > > Regards, > Benny > > 2010/12/9 Koichi Suzuki<ko...@in...>: >> In the current implementation, sequence value is supplied by GTM, as you >> know. It is assumed that this value is supplied to the datanode through >> the coordinator. In the case of your case, default value must be handled >> by the datanode and the datanode has to inquire GTM for the nextval of the >> sequence. >> >> I'm afraid this is missing in the current code. >> --- >> Koichi >> >> (2010年12月08日 19:33), xiong wang wrote: >>> >>> 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 >>> >>> >>> ------------------------------------------------------------------------------ >>> What happens now with your Lotus Notes apps - do you make another costly >>> upgrade, or settle for being marooned without product support? Time to >>> move >>> off Lotus Notes and onto the cloud with Force.com, apps are easier to >>> build, >>> use, and manage than apps on traditional platforms. Sign up for the Lotus >>> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d >>> _______________________________________________ >>> Postgres-xc-developers mailing list >>> Pos...@li... >>> https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers >>> >> >> > |
From: xiong w. <wan...@gm...> - 2010-12-09 01:11:12
|
Hi Koichi, Yes, I consider sequence should be created on datanodes but not only on coordinators. But all the sequence value should be from GTM. Regards, Benny 2010/12/9 Koichi Suzuki <ko...@in...>: > In the current implementation, sequence value is supplied by GTM, as you > know. It is assumed that this value is supplied to the datanode through > the coordinator. In the case of your case, default value must be handled > by the datanode and the datanode has to inquire GTM for the nextval of the > sequence. > > I'm afraid this is missing in the current code. > --- > Koichi > > (2010年12月08日 19:33), xiong wang wrote: >> >> 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 >> >> >> ------------------------------------------------------------------------------ >> What happens now with your Lotus Notes apps - do you make another costly >> upgrade, or settle for being marooned without product support? Time to >> move >> off Lotus Notes and onto the cloud with Force.com, apps are easier to >> build, >> use, and manage than apps on traditional platforms. Sign up for the Lotus >> Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d >> _______________________________________________ >> Postgres-xc-developers mailing list >> Pos...@li... >> https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers >> > > |
From: Koichi S. <ko...@in...> - 2010-12-09 00:36:50
|
In the current implementation, sequence value is supplied by GTM, as you know. It is assumed that this value is supplied to the datanode through the coordinator. In the case of your case, default value must be handled by the datanode and the datanode has to inquire GTM for the nextval of the sequence. I'm afraid this is missing in the current code. --- Koichi (2010年12月08日 19:33), xiong wang wrote: > 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 > > ------------------------------------------------------------------------------ > What happens now with your Lotus Notes apps - do you make another costly > upgrade, or settle for being marooned without product support? Time to move > off Lotus Notes and onto the cloud with Force.com, apps are easier to build, > use, and manage than apps on traditional platforms. Sign up for the Lotus > Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d > _______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers > |