Skip to content

Commit 32f4d6d

Browse files
authored
Merge pull request #7099 from meob/patch-1
[FIX] Order available PostgreSQL tables
2 parents 5ac8ba0 + e907a83 commit 32f4d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/data/sql/backend/postgres.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def list_tables_query(self, schema=None):
111111
AND n.nspname !~ '^pg_toast'
112112
{}
113113
AND NOT c.relname LIKE '\\_\\_%'
114-
ORDER BY 1;""".format(schema_clause)
114+
ORDER BY 1,2;""".format(schema_clause)
115115

116116
def create_variable(self, field_name, field_metadata,
117117
type_hints, inspect_table=None):

0 commit comments

Comments
 (0)