Skip to content

Commit

Permalink
[test] indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
harold committed Sep 5, 2024
1 parent cc79365 commit cb70be8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tmducken/duckdb_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@
(duckdb/create-table! @conn* cities-ds)
(duckdb/insert-dataset! @conn* cities-ds)
(let [result-ds (duckdb/sql->dataset
@conn*
"SELECT country, name, \"2010\"::Integer as '2010' FROM (PIVOT cities ON year USING sum(population::SmallInt) order by country, name);")]
@conn*
"SELECT country, name, \"2010\"::Integer as '2010' FROM (PIVOT cities ON year USING sum(population::SmallInt) order by country, name);")]
(is (= [{"country" "NL", "name" "Amsterdam", "2010" 1065}
{"country" "US", "name" "New York", "2010" 8175}
{"country" "US", "name" "Seattle", "2010" 608}]
Expand Down

0 comments on commit cb70be8

Please sign in to comment.