Skip to content

Commit

Permalink
remove json format and add more columns
Browse files Browse the repository at this point in the history
  • Loading branch information
BentsiLeviav committed Aug 20, 2024
1 parent 711f006 commit 4bbe2fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/adapter/projections/test_projections.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def test_create_and_verify_distributed_projection(self, project):
print(show_create)
# check that the latest query used the projection
result = project.run_sql(
f"SELECT * FROM clusterAllReplicas(default, 'system.query_log') "
f"WHERE query like '%{project.test_schema}.{relation.name}%' ORDER BY query_start_time DESC format json",
f"SELECT hostname, query, toString(query_start_time_microseconds, 'UTC'),read_rows, projections, is_initial_query FROM clusterAllReplicas(default, 'system.query_log') "
f"WHERE query like '%{project.test_schema}.{relation.name}%' ORDER BY query_start_time DESC",
# f"and query not like '%system.query_log%' and read_rows > 0 ORDER BY query_start_time DESC",
fetch="all",
)
Expand Down

0 comments on commit 4bbe2fc

Please sign in to comment.