()
| 30 | type sqliteSelector struct{} |
| 31 | |
| 32 | func newSQLiteSelector() *sqliteSelector { |
| 33 | return &sqliteSelector{} |
| 34 | } |
| 35 | |
| 36 | func (s *sqliteSelector) ColumnExpr(name string, column *Column) string { |
| 37 | // Under SQLite, neither json nor jsonb are real data types, and rather just |
no outgoing calls