WithDefaultCollationForUTF8MB4 sets the default collation for utf8mb4 for `ExprContext`.
(collation string)
| 68 | |
| 69 | // WithDefaultCollationForUTF8MB4 sets the default collation for utf8mb4 for `ExprContext`. |
| 70 | func WithDefaultCollationForUTF8MB4(collation string) ExprCtxOption { |
| 71 | return func(s *exprCtxState) { |
| 72 | s.defaultCollationForUTF8MB4 = collation |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | // WithBlockEncryptionMode sets the block encryption mode for `ExprContext`. |
| 77 | func WithBlockEncryptionMode(mode string) ExprCtxOption { |
no outgoing calls