blob: 484e7f3b00b1c487ecc4176fed0e2e975c9a7337 [file] [log] [blame]
drop table if exists test;
create table test (a integer);
insert into test select a from generate_series(1,100) a;
\echo -- start_ignore
select * from test where ctid='(0,10)' and gp_segment_id=1;
\echo -- end_ignore
drop table if exists test;
create table test (a integer);
insert into test select a from generate_series(1,100) a;
\echo -- start_ignore
select * from test where ctid in ('(0,10)', '(0,20)');
\echo -- end_ignore