WithWindowingUseHighPrecision sets the windowing use high precision for `ExprContext`.
(useHighPrecision bool)
| 128 | |
| 129 | // WithWindowingUseHighPrecision sets the windowing use high precision for `ExprContext`. |
| 130 | func WithWindowingUseHighPrecision(useHighPrecision bool) ExprCtxOption { |
| 131 | return func(s *exprCtxState) { |
| 132 | s.windowingUseHighPrecision = useHighPrecision |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | // WithGroupConcatMaxLen sets the group concat max len for `ExprContext`. |
| 137 | func WithGroupConcatMaxLen(maxLen uint64) ExprCtxOption { |
no outgoing calls