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

Method ProcessDate

cpp/src/arrow/c/bridge.cc:1202–1211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1200 }
1201
1202 Status ProcessDate() {
1203 RETURN_NOT_OK(f_parser_.CheckHasNext());
1204 switch (f_parser_.Next()) {
1205 case 'D':
1206 return ProcessPrimitive(date32());
1207 case 'm':
1208 return ProcessPrimitive(date64());
1209 }
1210 return f_parser_.Invalid();
1211 }
1212
1213 Status ProcessInterval() {
1214 RETURN_NOT_OK(f_parser_.CheckHasNext());

Callers

nothing calls this directly

Calls 3

CheckHasNextMethod · 0.80
InvalidMethod · 0.80
NextMethod · 0.45

Tested by

no test coverage detected