You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
(19) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(12) |
Feb
(1) |
Mar
(4) |
Apr
(4) |
May
(32) |
Jun
(12) |
Jul
(11) |
Aug
(1) |
Sep
(6) |
Oct
(3) |
Nov
|
Dec
(10) |
2012 |
Jan
(11) |
Feb
(1) |
Mar
(3) |
Apr
(25) |
May
(53) |
Jun
(38) |
Jul
(103) |
Aug
(54) |
Sep
(31) |
Oct
(66) |
Nov
(77) |
Dec
(20) |
2013 |
Jan
(91) |
Feb
(86) |
Mar
(103) |
Apr
(107) |
May
(25) |
Jun
(37) |
Jul
(17) |
Aug
(59) |
Sep
(38) |
Oct
(78) |
Nov
(29) |
Dec
(15) |
2014 |
Jan
(23) |
Feb
(82) |
Mar
(118) |
Apr
(101) |
May
(103) |
Jun
(45) |
Jul
(6) |
Aug
(10) |
Sep
|
Oct
(32) |
Nov
|
Dec
(9) |
2015 |
Jan
(3) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(9) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
|
2
(1) |
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
(5) |
25
(1) |
26
|
27
|
28
|
29
(2) |
30
|
31
|
|
|
|
From: Jov <am...@am...> - 2014-12-29 08:08:00
|
diff --git a/src/test/regress/expected/json_1.out b/src/test/regress/expected/json_1.out index befe47d..04efaaa 100644 --- a/src/test/regress/expected/json_1.out +++ b/src/test/regress/expected/json_1.out @@ -386,7 +386,7 @@ CREATE TEMP TABLE rows AS SELECT x, 'txt' || x as y FROM generate_series(1,3) AS x; SELECT row_to_json(q,true) -FROM rows q; +FROM rows q order by x; row_to_json -------------- {"x":1, + |
From: Jov <am...@am...> - 2014-12-29 06:24:41
|
Is there anyone review this patch? Jov blog: http:amutu.com/blog <http://amutu.com/blog> 2014-12-25 10:57 GMT+08:00 Koichi Suzuki <koi...@gm...>: > I appreciate for the patch. Year, it's nice to keep both XL and XC > synchronized. > > Best; > --- > Koichi Suzuki > > > 2014-12-24 11:39 GMT+09:00 Jov <am...@am...>: > > These changes already exist in PGXL,I port them to PGXC. > > > > the problem this patch solved(common in xl and xc): > > 1.make pgxc_ctl explicit depend bash(report error if there is no bash > > in PATH > > ) > > 2.change '#!/bin/bash' to '#/usr/bin/env bash' for all bash script > > 3.fix build error for missing .h for some type or maroc. > > 4.fix pool send and recv fds which transfer corrupt fds > > > > There also some changes only for PGXC: > > 1.build pgxc_ctl when cd contrib && make > > 2.fix build error for postgresMain which declare as return void but > return a > > int. > > 3.fix warning : implicit declaration of function ‘heap_form_tuple’ is > > invalid in C99,which return int for a 64bit pointer,which cause runtime > > error. > > > > ref: > > > http://sourceforge.net/p/postgres-xl/postgres-xl/ci/9f4da7c3527699ad66ed4af7088faa3ab8fad42c/ > > > http://sourceforge.net/p/postgres-xl/postgres-xl/ci/ccaa2d54927b73ace8efc686ea715daa99a72a76/ > > > http://sourceforge.net/p/postgres-xl/postgres-xl/ci/922f7aba30ee6a15a5cd4dabeeb254614d87d3b6/ > > > > > > Jov > > blog: http:amutu.com/blog > > > > > > > ------------------------------------------------------------------------------ > > Dive into the World of Parallel Programming! The Go Parallel Website, > > sponsored by Intel and developed in partnership with Slashdot Media, is > your > > hub for all things parallel software development, from weekly thought > > leadership blogs to news, videos, case studies, tutorials and more. Take > a > > look and join the conversation now. http://goparallel.sourceforge.net > > _______________________________________________ > > Postgres-xc-general mailing list > > Pos...@li... > > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > > > |