citus/src/test/regress/expected/upgrade_citus_locks.out

18 lines
626 B
Plaintext

SELECT column_name FROM information_schema.columns WHERE table_name = 'citus_locks' AND column_name NOT IN ('waitstart')
EXCEPT SELECT column_name FROM information_schema.columns WHERE table_name = 'pg_locks'
ORDER BY 1;
column_name
---------------------------------------------------------------------
global_pid
nodeid
relation_name
(3 rows)
SELECT column_name FROM information_schema.columns WHERE table_name = 'pg_locks'
EXCEPT SELECT column_name FROM information_schema.columns WHERE table_name = 'citus_locks'
ORDER BY 1;
column_name
---------------------------------------------------------------------
(0 rows)