| 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()); |
nothing calls this directly
no test coverage detected