Skip to content

Commit

Permalink
format sql
Browse files Browse the repository at this point in the history
Co-authored-by: Yuri Astrakhan <[email protected]>
  • Loading branch information
sharkAndshark and nyurik authored Sep 8, 2023
1 parent 2c8febb commit 04a5641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion martin/src/pg/scripts/query_available_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ WITH
SELECT
pg_namespace.nspname AS schema_name,
relname AS table_name,
CAST ( obj_description ( relfilenode, 'pg_class' ) AS VARCHAR ) AS description
CAST(obj_description(relfilenode, 'pg_class') AS VARCHAR) AS description
FROM pg_class
JOIN pg_namespace ON pg_class.relnamespace = pg_namespace.oid
WHERE relkind = 'r' OR relkind = 'v'
Expand Down

0 comments on commit 04a5641

Please sign in to comment.