| 154 | } |
| 155 | |
| 156 | Value GetMilliseconds(absl::Time timestamp, absl::string_view tz) { |
| 157 | return GetTimeBreakdownPart( |
| 158 | timestamp, tz, [](const absl::TimeZone::CivilInfo& breakdown) { |
| 159 | return absl::ToInt64Milliseconds(breakdown.subsecond); |
| 160 | }); |
| 161 | } |
| 162 | |
| 163 | absl::Status RegisterTimestampFunctions(FunctionRegistry& registry, |
| 164 | const RuntimeOptions& options) { |
no test coverage detected