declare const commentMapQueryPart = "\n SELECT\n a.attname as \"column_name\",\n col_description(c.oid, a.attnum::int) as \"comment\"\n FROM\n pg_class c\n JOIN pg_attribute a on a.attrelid=c.oid\n JOIN pg_namespace n ON c.relnamespace = n.oid\n WHERE\n n.nspname = :schema_name\n AND c.relname = :table_name\n"; export default commentMapQueryPart;