Skip to content

Commit

Permalink
debug- show all related logs from query log with query start time
Browse files Browse the repository at this point in the history
  • Loading branch information
BentsiLeviav committed Aug 20, 2024
1 parent 8d0425a commit d705d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/adapter/projections/test_projections.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def test_create_and_verify_distributed_projection(self, project):

result = project.run_sql(
f"SELECT query, projections FROM clusterAllReplicas(default, 'system.query_log') "
f"WHERE query like '%{project.test_schema}.{relation.name}%' ORDER BY query_start_time DESC"
f"WHERE query like '%{project.test_schema}.{relation.name}%' "
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 d705d52

Please sign in to comment.