WithSysDateIsNow sets the sysdate is now for `ExprContext`.
(now bool)
| 82 | |
| 83 | // WithSysDateIsNow sets the sysdate is now for `ExprContext`. |
| 84 | func WithSysDateIsNow(now bool) ExprCtxOption { |
| 85 | return func(s *exprCtxState) { |
| 86 | s.sysDateIsNow = now |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | // WithNoopFuncsMode sets the noop funcs mode for `ExprContext`. |
| 91 | func WithNoopFuncsMode(mode int) ExprCtxOption { |
no outgoing calls