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

Method ProcessTemporal

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

Source from the content-addressed store, hash-verified

1147 }
1148
1149 Status ProcessTemporal() {
1150 RETURN_NOT_OK(f_parser_.CheckHasNext());
1151 switch (f_parser_.Next()) {
1152 case 'd':
1153 return ProcessDate();
1154 case 't':
1155 return ProcessTime();
1156 case 'D':
1157 return ProcessDuration();
1158 case 'i':
1159 return ProcessInterval();
1160 case 's':
1161 return ProcessTimestamp();
1162 }
1163 return f_parser_.Invalid();
1164 }
1165
1166 Status ProcessNested() {
1167 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