Dears,
steps as follows:
1.create table test(a int);
2.insert into test(a) values(1) returning a;
The result on pgxc version 0.9.3 is:
template1=# insert into test(a) values(1) returning a;
INSERT 0 2
Actually, only one value is inserted.
The expected result is:
template1=# insert into test(a) values(1) returning a;
a
---
1
(1 row)
INSERT 0 1
Best regards,
Benny
|