MCPcopy Create free account
hub / github.com/apache/impala / Scan

Method Scan

be/src/exec/json/json-parser.h:328–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326 }
327
328 Status Scan(int max_row, int* num_rows) {
329 *num_rows = 0;
330 if (!parser_.IsTidy()) return Status("Parser is not tidy");
331 RETURN_IF_ERROR(parser_.Parse(max_row, num_rows));
332 return Status::OK();
333 }
334
335 Status Count(int max_row, int* num_rows) {
336 *num_rows = 0;

Callers 1

TEST_PFunction · 0.80

Calls 4

OKFunction · 0.85
IsTidyMethod · 0.80
StatusClass · 0.50
ParseMethod · 0.45

Tested by 1

TEST_PFunction · 0.64