MCPcopy Create free account
hub / github.com/apache/arrow / AppendBasics

Method AppendBasics

cpp/src/arrow/array/array_union_test.cc:451–465  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

449 }
450
451 void AppendBasics() {
452 AppendInt(33);
453 AppendString("abc");
454 AppendDouble(1.0);
455 AppendDouble(-1.0);
456 AppendString("");
457 AppendInt(10);
458 AppendString("def");
459 AppendInt(-10);
460 AppendDouble(0.5);
461
462 ASSERT_OK(union_builder->Finish(&actual));
463 ASSERT_OK(actual->ValidateFull());
464 ArrayFromVector<Int8Type, uint8_t>(expected_types_vector, &expected_types);
465 }
466
467 void AppendNullsAndEmptyValues() {
468 AppendString("abc");

Callers

nothing calls this directly

Calls 2

FinishMethod · 0.45
ValidateFullMethod · 0.45

Tested by

no test coverage detected