You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LEFT JOIN crdb_internal.table_columns tc ON tc.descriptor_id = attrelid AND tc.column_name = attname
512
+
LEFT JOIN information_schema.columns tc ON tc.table_schema = cls.relnamespace::regnamespace::text AND tc.table_name = cls.relname AND tc.column_name = attname
513
513
LEFT JOIN pg_type typ ON typ.oid = attr.atttypid
514
514
WHERE
515
515
${filterByTableAndViewIds ? ` attrelid in ${filterByTableAndViewIds}` : 'false'}
0 commit comments