Skip to content

Commit

Permalink
Disable testRenameSchema in ClickHouse
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr committed Jan 22, 2022
1 parent df61aea commit 0805b93
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

import io.trino.plugin.jdbc.BaseJdbcConnectorSmokeTest;
import io.trino.testing.TestingConnectorBehavior;
import org.testng.annotations.Test;

public abstract class BaseClickHouseConnectorSmokeTest
extends BaseJdbcConnectorSmokeTest
Expand All @@ -29,4 +30,12 @@ protected boolean hasBehavior(TestingConnectorBehavior connectorBehavior)
return super.hasBehavior(connectorBehavior);
}
}

// TODO (https://github.com/trinodb/trino/issues/10653) Disable until fixing the flaky test issue
@Test(enabled = false)
@Override
public void testRenameSchema()
{
super.testRenameSchema();
}
}

0 comments on commit 0805b93

Please sign in to comment.