(column, key string)
| 233 | } |
| 234 | |
| 235 | func (d *postgresDialect) JSONRemove(column, key string) string { |
| 236 | return fmt.Sprintf("(%s::jsonb - '%s')", column, key) |
| 237 | } |
| 238 | |
| 239 | func (d *postgresDialect) Now() string { |
| 240 | return "(NOW() AT TIME ZONE 'UTC')" |
no outgoing calls