Skip to content

Commit

Permalink
Add comment for clickhouse.map-string-as-varchar in ClickHouse tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr committed Jan 19, 2022
1 parent 6565276 commit 2d6c0ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected QueryRunner createQueryRunner()
clickHouseServer,
ImmutableMap.of(),
ImmutableMap.<String, String>builder()
.put("clickhouse.map-string-as-varchar", "true")
.put("clickhouse.map-string-as-varchar", "true") // To handle string types in TPCH tables as varchar instead of varbinary
.buildOrThrow(),
REQUIRED_TPCH_TABLES);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected QueryRunner createQueryRunner()
closeAfterClass(new TestingClickHouseServer(CLICKHOUSE_LATEST_IMAGE)),
ImmutableMap.of(),
ImmutableMap.<String, String>builder()
.put("clickhouse.map-string-as-varchar", "true")
.put("clickhouse.map-string-as-varchar", "true") // To handle string types in TPCH tables as varchar instead of varbinary
.buildOrThrow(),
REQUIRED_TPCH_TABLES);
}
Expand Down

0 comments on commit 2d6c0ae

Please sign in to comment.