postgresql - Very strange SQL Select error when selecting data from Views -
i'm working greenplum in pgadmin, , have view called myview. when select view this:
select * myview state = 'ny' or state = 'ca';
it works fine.
however, when remove or condition:
select * myview state = 'ny';
i error: "can't serialize transient record types, sql state xx000".
this strange, , couldn't find information error. have tried creating view again different input table, same error. tried create table instead of view, , works expected, occurs views.
thanks in advance.
Comments
Post a Comment