Skip to content

Commit 95b1750

Browse files
committed
cleanup
1 parent 4374325 commit 95b1750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client-v2/src/main/java/com/clickhouse/client/api/internal/TableSchemaParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public static TableSchema readTSKV(InputStream content, String table, String sql
3030
try {
3131
column = ClickHouseColumn.of(columnName, columnType);
3232
} catch (IllegalArgumentException e) {
33-
throw new ClientException("Failed parse column `"+ columnName + "` defined by type '" + columnType + "'", e);
33+
throw new ClientException("Failed to parse column `"+ columnName + "` defined by type '" + columnType + "'", e);
3434
}
3535
String defaultType = p.getProperty("default_type");
3636
String defaultExpression = p.getProperty("default_expression");

0 commit comments

Comments
 (0)