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
Hi, we are using citus in schema based sharding and are experiencing strange behavior when running the following query:
setcitus.enable_schema_based_sharding to on;
createschemacitus_test;
SET search_path = citus_test, public;
createtableversion (
id bigserialnot null,
description varchar(255),
primary key (id)
);
insert into version (description) values ('Version 1');
with v as (
select*from version where description ='Version 1'
)
insert into
version (description)
select description
from v;
select*fromcitus_test.version;
Expected:
id
description
1
Version 1
2
Version 1
Actual:
id
description
1
Version 1
562949953421313
Version 1
I found the following issue: 6798, and from the values it looks like it could be related.
The text was updated successfully, but these errors were encountered:
Hi, we are using citus in schema based sharding and are experiencing strange behavior when running the following query:
Expected:
Actual:
I found the following issue: 6798, and from the values it looks like it could be related.
The text was updated successfully, but these errors were encountered: