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
|
2
|
3
|
4
|
5
|
6
|
7
(3) |
8
|
9
(1) |
10
(1) |
11
(10) |
12
(4) |
13
(8) |
14
(2) |
15
|
16
|
17
(1) |
18
(2) |
19
(1) |
20
|
21
(1) |
22
|
23
|
24
|
25
(1) |
26
(3) |
27
(2) |
28
(6) |
29
(1) |
30
|
31
|
|
|
|
|
|
From: Koichi S. <ko...@in...> - 2011-01-18 02:44:53
|
Thank you very much for pointing out the issue. I will put this to bug track list of the project. Practically, it is just for internal use. When coordinator receives statements using sequence, it first looks up coordinator catalog and go to GTM only when it is registered. So this will not cause any problem. Call to gtm is not exposed to XC application. It is only called from within coordinator and datanode internals. Thank you again; --- Koichi Suzuki (2011年01月13日 12:31), Suzuki Hironobu wrote: > Dear developers, > > I found a gtm's bug. > > Two functions in gtm_seq.c (ProcessSequenceGetCurrentCommand and > ProcessSequenceGetNextCommand) do not return the error even if > sequence_key is not registered. > In this case, these functions return 22 (= EINVAL) as a normal value. > Therefore, gtm also returns 22 to proxy and coordinator. > > > Regards, > suzuki hironobu > > > P.S. > The simplest bugfix patch is as follows: > > diff -crN pgxc.org/src/gtm/main/gtm_seq.c pgxc/src/gtm/main/gtm_seq.c > *** pgxc.org/src/gtm/main/gtm_seq.c 2011-01-13 11:38:55.000000000 +0900 > --- pgxc/src/gtm/main/gtm_seq.c 2011-01-13 11:45:48.000000000 +0900 > *************** > *** 532,535 **** > if (seqinfo == NULL) > { > ! ereport(LOG, > (EINVAL, > --- 532,535 ---- > if (seqinfo == NULL) > { > ! ereport(ERROR, > (EINVAL, > *************** > *** 596,599 **** > if (seqinfo == NULL) > { > ! ereport(LOG, > (EINVAL, > --- 596,599 ---- > if (seqinfo == NULL) > { > ! ereport(ERROR, > (EINVAL, > > > > > ------------------------------------------------------------------------------ > Protect Your Site and Customers from Malware Attacks > Learn about various malware tactics and how to avoid them. Understand > malware threats, the impact they can have on your business, and how you > can protect your company and customers by using code signing. > http://p.sf.net/sfu/oracle-sfdevnl > _______________________________________________ > Postgres-xc-developers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-developers > |