ent icon indicating copy to clipboard operation
ent copied to clipboard

support gist index type

Open lolopinto opened this issue 2 years ago • 0 comments

requires operators in postgres

to get list of operators

 SELECT am.amname AS index_method,
       opc.opcname AS opclass_name,
       opc.opcintype::regtype AS indexed_type,
       opc.opcdefault AS is_default
    FROM pg_am am, pg_opclass opc
    WHERE opc.opcmethod = am.oid
    ORDER BY index_method, opclass_name;

lolopinto avatar Aug 01 '22 20:08 lolopinto