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

Method ProcessDate

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

Source from the content-addressed store, hash-verified

1195 }
1196
1197 Status ProcessDate() {
1198 RETURN_NOT_OK(f_parser_.CheckHasNext());
1199 switch (f_parser_.Next()) {
1200 case 'D':
1201 return ProcessPrimitive(date32());
1202 case 'm':
1203 return ProcessPrimitive(date64());
1204 }
1205 return f_parser_.Invalid();
1206 }
1207
1208 Status ProcessInterval() {
1209 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