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

Function ValidateFuzzBatch

cpp/src/arrow/ipc/reader.cc:2681–2688  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2679namespace {
2680
2681Status ValidateFuzzBatch(const RecordBatch& batch) {
2682 auto st = batch.ValidateFull();
2683 if (st.ok()) {
2684 // If the batch is valid, printing should succeed
2685 batch.ToString();
2686 }
2687 return st;
2688}
2689
2690Status ValidateFuzzBatch(const RecordBatchWithMetadata& batch) {
2691 if (batch.batch) {

Callers 2

FuzzIpcStreamFunction · 0.85
FuzzIpcFileFunction · 0.85

Calls 4

OKFunction · 0.50
ValidateFullMethod · 0.45
okMethod · 0.45
ToStringMethod · 0.45

Tested by

no test coverage detected