mirror of https://github.com/citusdata/citus.git
18 lines
626 B
Plaintext
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)
|
|
|