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
|
3
|
4
|
5
(1) |
6
(6) |
7
(1) |
8
|
9
|
10
|
11
(5) |
12
(1) |
13
|
14
|
15
|
16
|
17
(5) |
18
(5) |
19
(7) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
|
|
|
|
|
From: Michael P. <mic...@gm...> - 2012-09-17 23:43:09
|
On Tue, Sep 18, 2012 at 7:40 AM, Ashutosh Bapat < ash...@en...> wrote: > > > On Tue, Sep 18, 2012 at 2:05 AM, Paulo Pires <pj...@ub...> wrote: > >> OK, I've tried this with plain PostgreSQL and it works. I've executed >> the query by hand and the ID of the user returns properly. >> In postgres-xc the RETURNING clause is not yet supported. >> >> Any idea on when could this get to postgres-xc or at least could anyone >> please explain why it has not been yet included (any technical issues?)? >> >> > The RETURNING clause support will be available in the next release of XC. > We are working on it. > The patch for support of RETURNING will be committed in something like 2 weeks on the current development branch, so you may also consider testing your application not on a stable release but on Postgres-XC master branch. -- Michael Paquier http://michael.otacoo.com |
From: Ashutosh B. <ash...@en...> - 2012-09-17 22:40:27
|
On Tue, Sep 18, 2012 at 2:05 AM, Paulo Pires <pj...@ub...> wrote: > OK, I've tried this with plain PostgreSQL and it works. I've executed > the query by hand and the ID of the user returns properly. > In postgres-xc the RETURNING clause is not yet supported. > > Any idea on when could this get to postgres-xc or at least could anyone > please explain why it has not been yet included (any technical issues?)? > > The RETURNING clause support will be available in the next release of XC. We are working on it. > Cheers, > PP > > On 9/17/12 10:47 PM, Paulo Pires wrote: > > Dear all, > > > > I'm testing postgres-xc with an existing Java EE solution of mine and > > right now I'm facing the following issue when reading from an entity > > I've just persisted: > > > > org.postgresql.util.PSQLException: ERROR: RETURNING clause not yet > supported > > > > Here's what I'm doing: > > 1) I have a JDBC Connection Pool configured in my application server > > pointing to one of my coordinators; > > 2) In my application, I'm using Hibernate (Java ORM implementation) to > > persist my dat-model; > > 3) I insert a new entity to my database; > > 4) I get the ID of the object, that usually is available after inserting > > the new entity (I don't force RETURNING clause, but I believe the ORM > > may be doing it or something similar, if any); > > 5) I get the aforementioned exception. > > > > Is this a known issue? > > > > Cheers, > > > > > > > > > ------------------------------------------------------------------------------ > > Live Security Virtual Conference > > Exclusive live event will cover all the ways today's security and > > threat landscape has changed and how IT managers can respond. Discussions > > will include endpoint security, mobile security and the latest in malware > > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > > > > > > > > _______________________________________________ > > Postgres-xc-general mailing list > > Pos...@li... > > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > > > > -- > Paulo Pires > Ubiwhere > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > > -- Best Wishes, Ashutosh Bapat EntepriseDB Corporation The Enterprise Postgres Company |
From: Paulo P. <pj...@ub...> - 2012-09-17 22:05:48
|
OK, I've tried this with plain PostgreSQL and it works. I've executed the query by hand and the ID of the user returns properly. In postgres-xc the RETURNING clause is not yet supported. Any idea on when could this get to postgres-xc or at least could anyone please explain why it has not been yet included (any technical issues?)? Cheers, PP On 9/17/12 10:47 PM, Paulo Pires wrote: > Dear all, > > I'm testing postgres-xc with an existing Java EE solution of mine and > right now I'm facing the following issue when reading from an entity > I've just persisted: > > org.postgresql.util.PSQLException: ERROR: RETURNING clause not yet supported > > Here's what I'm doing: > 1) I have a JDBC Connection Pool configured in my application server > pointing to one of my coordinators; > 2) In my application, I'm using Hibernate (Java ORM implementation) to > persist my dat-model; > 3) I insert a new entity to my database; > 4) I get the ID of the object, that usually is available after inserting > the new entity (I don't force RETURNING clause, but I believe the ORM > may be doing it or something similar, if any); > 5) I get the aforementioned exception. > > Is this a known issue? > > Cheers, > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > > > > _______________________________________________ > Postgres-xc-general mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-general > -- Paulo Pires Ubiwhere |
From: Paulo P. <pj...@ub...> - 2012-09-17 21:48:07
|
Dear all, I'm testing postgres-xc with an existing Java EE solution of mine and right now I'm facing the following issue when reading from an entity I've just persisted: org.postgresql.util.PSQLException: ERROR: RETURNING clause not yet supported Here's what I'm doing: 1) I have a JDBC Connection Pool configured in my application server pointing to one of my coordinators; 2) In my application, I'm using Hibernate (Java ORM implementation) to persist my dat-model; 3) I insert a new entity to my database; 4) I get the ID of the object, that usually is available after inserting the new entity (I don't force RETURNING clause, but I believe the ORM may be doing it or something similar, if any); 5) I get the aforementioned exception. Is this a known issue? Cheers, -- Paulo Pires Ubiwhere |
From: Mason S. <ma...@st...> - 2012-09-17 13:27:54
|
If you are in the New York City area and want to learn more about Postgres-XC, I will be giving a talk this Thursday, Sept. 20th at 6:30 pm. More details can be found here: http://www.unigroup.org/unigroup-next.html Hope to see you there! -- Mason Sharp StormDB - http://www.stormdb.com The Database Cloud Postgres-XC Support and Services |