We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af0454b commit ebebda5Copy full SHA for ebebda5
clickhouse-jdbc/src/test/java/com/clickhouse/jdbc/ClickHouseStatementTest.java
@@ -834,7 +834,9 @@ public void testWrapperObject() throws SQLException {
834
835
@Test(groups = "integration")
836
public void testQuerySystemLog() throws SQLException {
837
- try (ClickHouseConnection conn = newConnection(new Properties())) {
+ Properties props = new Properties();
838
+ props.setProperty(ClickHouseClientOption.RESULT_OVERFLOW_MODE.getKey(), "break");
839
+ try (ClickHouseConnection conn = newConnection(props)) {
840
ClickHouseStatement stmt = conn.createStatement();
841
stmt.setMaxRows(10);
842
stmt.setLargeMaxRows(11L);
0 commit comments