Skip to content

Commit

Permalink
Roll back unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zhicwu committed Jul 26, 2022
1 parent 9633bf8 commit d7a6f77
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ protected ClickHouseStreamResponse(ClickHouseConfig config, ClickHouseInputStrea

this.config = config;
this.input = input;
this.closed = false;

boolean hasError = true;
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,7 @@ public void testErrorDuringInsert() throws Exception {
@Test(groups = "integration")
public void testErrorDuringQuery() throws Exception {
ClickHouseNode server = getServer();
String query = "select number, throwIf(number>=10000000) from numbers(50000000)";
String query = "select number, throwIf(number>=100000000) from numbers(500000000)";
long count = 0L;
try (ClickHouseClient client = getClient();
ClickHouseResponse resp = client.connect(server).format(ClickHouseFormat.RowBinaryWithNamesAndTypes)
Expand Down

0 comments on commit d7a6f77

Please sign in to comment.