We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37100f0 commit 18f8939Copy full SHA for 18f8939
cpp/src/arrow/flight/sql/odbc/tests/odbc_test_suite.cc
@@ -180,9 +180,20 @@ void FlightSQLOdbcV2RemoteTestBase::SetUp() {
180
connected_ = true;
181
}
182
183
-void FlightSQLOdbcEnvConnHandleRemoteTestBase::SetUp() { AllocEnvConnHandles(); }
+void FlightSQLOdbcEnvConnHandleRemoteTestBase::SetUp() {
184
+ ODBCRemoteTestBase::SetUp();
185
+ if (skipping_test_) {
186
+ return;
187
+ }
188
+
189
+ AllocEnvConnHandles();
190
+}
191
192
void FlightSQLOdbcEnvConnHandleRemoteTestBase::TearDown() {
193
194
195
196
197
// Free connection handle
198
EXPECT_EQ(SQL_SUCCESS, SQLFreeHandle(SQL_HANDLE_DBC, conn));
199
0 commit comments