| 930 | } |
| 931 | |
| 932 | Result<Datum> Strptime(const Datum& arg, StrptimeOptions options, ExecContext* ctx) { |
| 933 | return CallFunction("strptime", {arg}, &options, ctx); |
| 934 | } |
| 935 | |
| 936 | Result<Datum> Week(const Datum& arg, WeekOptions options, ExecContext* ctx) { |
| 937 | return CallFunction("week", {arg}, &options, ctx); |
no test coverage detected