Skip to content
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

Tests cannot resolve until an update is released to cloud #1811

Merged
merged 3 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1984,6 +1984,7 @@ public void testInsertWithCustomFormat() throws ClickHouseException {

@Test(groups = { "integration" })
public void testInsertRawDataSimple() throws Exception {
if (isCloud()) return; // TODO: This test is really just for performance purposes
testInsertRawDataSimple(1000);
}
public void testInsertRawDataSimple(int numberOfRecords) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ public void testAuthentication() throws ClickHouseException {

@Test(groups = "integration")
public void testUserAgent() throws Exception {
if (isCloud()) return; //TODO: testUserAgent - Revisit after the issue is resolved, see: https://github.com/ClickHouse/ClickHouse/issues/68748
testUserAgent(ClickHouseClientOption.PRODUCT_NAME, "MyCustomProduct");
testUserAgent(ClickHouseClientOption.CLIENT_NAME, "MyCustomClient");
}
Expand Down
Loading