(ctx ParseContext)
| 2107 | } |
| 2108 | |
| 2109 | func dateStyle(ctx ParseContext) pgdate.DateStyle { |
| 2110 | if ctx == nil { |
| 2111 | return pgdate.DefaultDateStyle() |
| 2112 | } |
| 2113 | return ctx.GetDateStyle() |
| 2114 | } |
| 2115 | |
| 2116 | func intervalStyle(ctx ParseContext) duration.IntervalStyle { |
| 2117 | if ctx == nil { |
no test coverage detected
searching dependent graphs…