MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / TEST_F

Function TEST_F

test/api/arrow_drop_table_test.cpp:254–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

252};
253
254TEST_F(ArrowDropTableTest, DropNodeTableMakesItInaccessible) {
255 createPersonTable(*conn);
256 auto dropResult = ArrowTableSupport::unregisterArrowTable(*conn, "person");
257 ASSERT_TRUE(dropResult->isSuccess()) << dropResult->getErrorMessage();
258 auto result = conn->query("MATCH (n:person) RETURN n.id");
259 ASSERT_FALSE(result->isSuccess());
260}
261
262TEST_F(ArrowDropTableTest, DropNodeTableAndReCreate) {
263 createPersonTable(*conn);

Callers

nothing calls this directly

Calls 11

createPersonTableFunction · 0.85
createKnowsTableFunction · 0.85
createCsrNodeTableFunction · 0.85
createCsrRelTableFunction · 0.85
isSuccessMethod · 0.45
getErrorMessageMethod · 0.45
queryMethod · 0.45
hasNextMethod · 0.45
getValueMethod · 0.45
getNextMethod · 0.45
findMethod · 0.45

Tested by

no test coverage detected