Skip to content

Commit

Permalink
update duckdb to v1.1.0 (#182)
Browse files Browse the repository at this point in the history
Co-authored-by: Jelte Fennema-Nio <github-tech@jeltef.nl>
  • Loading branch information
wuputah and JelteF authored Sep 17, 2024
1 parent 52b62ed commit ee3526d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/pycheck/explain_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ def test_explain(cur: Cursor):
result = cur.sql("EXPLAIN SELECT count(*) FROM test_table")
plan = "\n".join(result)
assert "UNGROUPED_AGGREGATE" in plan
assert "Timing:" not in plan
assert "Total Time:" not in plan

result = cur.sql("EXPLAIN ANALYZE SELECT count(*) FROM test_table")
plan = "\n".join(result)
assert "Query Profiling Information" in plan
assert "UNGROUPED_AGGREGATE" in plan
assert "Timing:" in plan
assert "Total Time:" in plan
2 changes: 1 addition & 1 deletion third_party/duckdb
Submodule duckdb updated 1402 files

0 comments on commit ee3526d

Please sign in to comment.