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

Function ValidateFuzzBatch

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

Source from the content-addressed store, hash-verified

2741namespace {
2742
2743Status ValidateFuzzBatch(const RecordBatch& batch) {
2744 auto st = batch.ValidateFull();
2745 if (st.ok()) {
2746 // If the batch is valid, printing should succeed
2747 batch.ToString();
2748 }
2749 return st;
2750}
2751
2752Status ValidateFuzzBatch(const RecordBatchWithMetadata& batch) {
2753 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