Skip to content

Commit

Permalink
skip other drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Nov 29, 2023
1 parent 94bf657 commit 4b49999
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions c/driver/flightsql/sqlite_flightsql_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,9 @@ class SqliteFlightSqlStatementTest : public ::testing::Test,
void TestSqlIngestInterval() {
GTEST_SKIP() << "Cannot ingest Interval (not implemented)";
}
void TestSqlIngestDecimal128() {
GTEST_SKIP() << "Cannot ingest Decimal128 (not implemented)";
}
void TestSqlQueryRowsAffectedDelete() {
GTEST_SKIP() << "Cannot query rows affected in delete (not implemented)";
}
Expand Down
4 changes: 4 additions & 0 deletions c/driver/sqlite/sqlite_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,10 @@ class SqliteStatementTest : public ::testing::Test,
GTEST_SKIP() << "Cannot ingest Interval (not implemented)";
}

void TestSqlIngestDecimal128() {
GTEST_SKIP() << "Cannot ingest Interval (not implemented)";
}

protected:
void ValidateIngestedTemporalData(struct ArrowArrayView* values, ArrowType type,
enum ArrowTimeUnit unit,
Expand Down
3 changes: 3 additions & 0 deletions c/driver_manager/adbc_driver_manager_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,9 @@ class SqliteStatementTest : public ::testing::Test,
void TestSqlIngestInterval() {
GTEST_SKIP() << "Cannot ingest Interval (not implemented)";
}
void TestSqlIngestDecimal128() {
GTEST_SKIP() << "Cannot ingest Decimal128 (not implemented)";
}

protected:
SqliteQuirks quirks_;
Expand Down

0 comments on commit 4b49999

Please sign in to comment.