(s string)
| 172 | ) |
| 173 | |
| 174 | func newInvalidSQLDurationError(s string) error { |
| 175 | return pgerror.Newf(pgcode.InvalidDatetimeFormat, errInvalidSQLDuration, s) |
| 176 | } |
| 177 | |
| 178 | // Parses a SQL standard interval string. |
| 179 | // See the following links for examples: |
no test coverage detected
searching dependent graphs…