(self, col: ColumnElement[Any])
| 78 | return func.jsonb(bindvalue, type_=self) |
| 79 | |
| 80 | def column_expression(self, col: ColumnElement[Any]) -> ColumnElement[Any]: |
| 81 | return func.json(col, type_=self) |
| 82 | |
| 83 | |
| 84 | # Note: these objects currently match exactly those of MySQL, however since |