| 439 | } |
| 440 | |
| 441 | void ODBCMockTestBase::DropUnicodeTable() { |
| 442 | std::string unicode_sql = |
| 443 | arrow::util::WideStringToUTF8(L"DROP TABLE 数据;").ValueOr(""); |
| 444 | ASSERT_OK(mock_server->ExecuteSql(unicode_sql)); |
| 445 | } |
| 446 | |
| 447 | void FlightSQLODBCMockTestBase::SetUpTestSuite() { |
| 448 | env = mock_odbcv3_handles.env; |
nothing calls this directly
no test coverage detected