Skip to content

Commit

Permalink
cleanup insertInto
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis committed Oct 16, 2024
1 parent 3db09a9 commit b64a77e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ public void happyPath() throws Exception {

final UUID rowId = UUID.randomUUID();

duckdb.insertInto(tableName, Map.of("id", rowId.toString(), "a", JSON1, "b", JSON2, "c", JSON3));
duckdb.insertInto(tableName,
Map.of("id", rowId.toString(),
"a", JSON1,
"b", JSON2,
"c", JSON3));

assertThat(duckdb.countRows(tableName)).isEqualTo(1);

Expand Down

0 comments on commit b64a77e

Please sign in to comment.