Fixes flakiness of tests

pull/7384/head
gindibay 2023-11-26 19:41:37 +03:00
parent 2fec02c301
commit 7632e5dbf5
2 changed files with 6 additions and 4 deletions

View File

@ -34,10 +34,11 @@ SELECT result from run_command_on_all_nodes(
schemaname, schemaname,
tablename, tablename,
tableowner tableowner
FROM FROM
pg_tables pg_tables
WHERE WHERE
tablename in ('test_table', 'test_table2') tablename in ('test_table', 'test_table2')
ORDER BY tablename
) q2 ) q2
$$ $$
) ORDER BY result; ) ORDER BY result;

View File

@ -27,10 +27,11 @@ SELECT result from run_command_on_all_nodes(
schemaname, schemaname,
tablename, tablename,
tableowner tableowner
FROM FROM
pg_tables pg_tables
WHERE WHERE
tablename in ('test_table', 'test_table2') tablename in ('test_table', 'test_table2')
ORDER BY tablename
) q2 ) q2
$$ $$
) ORDER BY result; ) ORDER BY result;