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

Method AppendBasics

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

Source from the content-addressed store, hash-verified

404 }
405
406 void AppendBasics() {
407 AppendInt(33);
408 AppendString("abc");
409 AppendDouble(1.0);
410 AppendDouble(-1.0);
411 AppendString("");
412 AppendInt(10);
413 AppendString("def");
414 AppendInt(-10);
415 AppendDouble(0.5);
416
417 ASSERT_OK(union_builder->Finish(&actual));
418 ASSERT_OK(actual->ValidateFull());
419 ArrayFromVector<Int8Type, uint8_t>(expected_types_vector, &expected_types);
420 }
421
422 void AppendNullsAndEmptyValues() {
423 AppendString("abc");

Callers

nothing calls this directly

Calls 2

FinishMethod · 0.45
ValidateFullMethod · 0.45

Tested by

no test coverage detected