>
> > can you send structure and execution plan?
> Thank you for your request, the execution plan is the one from
> "explain" (I think) but what is the "structure plan"?
no, only structure :) table and fields.
> The problema was a bug on my import in new database!
>
> To avoid future error of t
Pavel Stehule ha scritto:
Hello
it works to me:
postgres=# create table c1(n varchar, e integer);
CREATE TABLE
postgres=# create table c2(n2 varchar, e integer);
CREATE TABLE
postgres=# insert into c1 values('aa',1),('bb',2),('aa',3);
INSERT 0 3
postgres=# insert into c2 values('aa',1),('bb',2)
Hello
it works to me:
postgres=# create table c1(n varchar, e integer);
CREATE TABLE
postgres=# create table c2(n2 varchar, e integer);
CREATE TABLE
postgres=# insert into c1 values('aa',1),('bb',2),('aa',3);
INSERT 0 3
postgres=# insert into c2 values('aa',1),('bb',2),('aa',3);
INSERT 0 3
postgr