Sha256: cdd48cd93d0163d82f169e35220cd92d63310960dde2206faf48840cef01e370
Contents?: true
Size: 254 Bytes
Versions: 52
Compression:
Stored size: 254 Bytes
Contents
/* List all the indexes with their corresponding tables and columns. */ SELECT schemaname, indexname, tablename, rtrim(split_part(indexdef, '(', 2), ')') as columns FROM pg_indexes where tablename in (select relname from pg_statio_user_tables);
Version data entries
52 entries across 52 versions & 1 rubygems