(ctx ParseContext)
| 2121 | } |
| 2122 | |
| 2123 | func dateParseHelper(ctx ParseContext) *pgdate.ParseHelper { |
| 2124 | if ctx == nil { |
| 2125 | return nil |
| 2126 | } |
| 2127 | return ctx.GetDateHelper() |
| 2128 | } |
| 2129 | |
| 2130 | // ParseDDate parses and returns the *DDate Datum value represented by the provided |
| 2131 | // string in the provided location, or an error if parsing is unsuccessful. |
no test coverage detected
searching dependent graphs…