Skip to content

Commit

Permalink
Käydään taulut läpi aakkosjärjestyksessä
Browse files Browse the repository at this point in the history
  • Loading branch information
augustk committed Jan 16, 2025
1 parent e797a33 commit 82b713b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public DatabaseToS3(Config config) throws Exception {
"""
select table_name as tablename
from information_schema.tables
where table_schema = ?;
where table_schema = ?
order by table_name asc;
""";

private static final String EXPORT_TABLE_TO_S3_SQL =
Expand Down

0 comments on commit 82b713b

Please sign in to comment.