| 37 | } |
| 38 | |
| 39 | void createBasePersonTable(main::Connection& connection) { |
| 40 | auto result = ArrowTableSupport::createViewFromArrowTable(connection, "person", |
| 41 | makeSimplePersonSchema(), makeSimplePersonArrays()); |
| 42 | ASSERT_TRUE(result.queryResult->isSuccess()) << result.queryResult->getErrorMessage(); |
| 43 | } |
| 44 | |
| 45 | ArrowSchemaWrapper makeRelSchema(bool includeFrom, bool includeTo, bool weightInt64 = true, |
| 46 | bool fromString = false, bool toInt32 = false, bool includeWeight = true, |
no test coverage detected