You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can understand, you're having trouble with something like this:
createtablea (value int4, id int4);
createtableb (aid int4, id int4 not null);
select create_range_partitions('b', 'id', 1, 100, 10);
/* this query doesn't work */update a set value =1wherea.idin (select aid from b whereb.id=2);
This is a known problem, and we'll try to fix it as soon as possible.
update a set value=1 where a.id in (select aid from b where b.id='2')
table b is apply for path_man
The text was updated successfully, but these errors were encountered: