-
Couldn't load subscription status.
- Fork 614
Added Colume init for string, array , map and tuple #2624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Client V2 CoverageCoverage Report
Class Coverage
|
JDBC V2 CoverageCoverage Report
Class Coverage
|
JDBC V1 CoverageCoverage Report
Class Coverage
|
Client V1 CoverageCoverage Report
Class Coverage
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 To request another review, post a new comment with "/windsurf-review".
| public static ClickHouseColumn map(String columnName, boolean nullable, ClickHouseDataType keyColumn, ClickHouseColumn valueColumn) { | ||
| return ClickHouseColumn.of(columnName, ClickHouseDataType.Map, nullable, | ||
| ClickHouseColumn.of(keyColumn), | ||
| valueColumn); | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The keyColumn parameter should be of type ClickHouseColumn instead of ClickHouseDataType to be consistent with the implementation and other similar methods.
| public static ClickHouseColumn map(String columnName, boolean nullable, ClickHouseDataType keyColumn, ClickHouseColumn valueColumn) { | |
| return ClickHouseColumn.of(columnName, ClickHouseDataType.Map, nullable, | |
| ClickHouseColumn.of(keyColumn), | |
| valueColumn); | |
| } | |
| public static ClickHouseColumn map(String columnName, boolean nullable, ClickHouseColumn keyColumn, ClickHouseColumn valueColumn) { | |
| return ClickHouseColumn.of(columnName, ClickHouseDataType.Map, nullable, | |
| keyColumn, | |
| valueColumn); | |
| } |


Summary
Closes
Checklist
Delete items not relevant to your PR: