(ctx ParseContext)
| 2114 | } |
| 2115 | |
| 2116 | func intervalStyle(ctx ParseContext) duration.IntervalStyle { |
| 2117 | if ctx == nil { |
| 2118 | return duration.IntervalStyle_POSTGRES |
| 2119 | } |
| 2120 | return ctx.GetIntervalStyle() |
| 2121 | } |
| 2122 | |
| 2123 | func dateParseHelper(ctx ParseContext) *pgdate.ParseHelper { |
| 2124 | if ctx == nil { |
no test coverage detected
searching dependent graphs…