(s string)
| 179 | ) |
| 180 | |
| 181 | func newInvalidSQLDurationError(s string) error { |
| 182 | return pgerror.Newf(pgcode.InvalidDatetimeFormat, errInvalidSQLDuration, s) |
| 183 | } |
| 184 | |
| 185 | // Parses a SQL standard interval string. |
| 186 | // See the following links for examples: |
no test coverage detected
searching dependent graphs…