ensure that objects are sorted by schema and name (#648)

This is a regression from #608
This commit is contained in:
Ashish Kulkarni
2023-02-16 03:09:17 +05:30
committed by GitHub
parent 41bf189e6b
commit 505ee42867

View File

@@ -42,4 +42,4 @@ WITH all_objects AS (
AND n.nspname NOT IN ('information_schema', 'pg_catalog')
)
SELECT * FROM all_objects
ORDER BY 1, 2
ORDER BY 2, 3