Skip to content

Commit

Permalink
Temporary disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-astachowski committed Nov 15, 2024
1 parent 5aafdf2 commit 9197cd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ static void endMetaData(Connection con) throws SQLException {
}

@Test
@Disabled // TODO: SNOW-1805299
@DontRunOnGithubActions
public void testGetColumn() throws SQLException {
String getAllColumnsCount = "select count(*) from db.information_schema.columns";
Expand Down Expand Up @@ -241,6 +242,7 @@ public void testGetFunctions() throws SQLException {
}

@Test
@Disabled // TODO: SNOW-1805299
@DontRunOnGithubActions
public void testGetSchema() throws SQLException {
String getSchemaCount = "select count(*) from db.information_schema.schemata";
Expand Down Expand Up @@ -449,6 +451,7 @@ private long getAccountId(Statement stmt, String accountName) throws SQLExceptio
}

@Test
@Disabled // TODO: SNOW-1805299
@DontRunOnGithubActions
public void testGetTables() throws SQLException {
String getAllTable = "select count(*) from db.information_schema.tables";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,6 @@ public void testDoubleQuotedDatabaseAndSchema() throws Exception {
* This tests the ability to have quotes inside a database or schema within getSchemas() function.
*/
@Test
@Disabled // TODO: SNOW-1805299
@DontRunOnGithubActions
public void testDoubleQuotedDatabaseInGetSchemas() throws SQLException {
try (Statement statement = connection.createStatement()) {
Expand Down

0 comments on commit 9197cd3

Please sign in to comment.