postgres reports if the builder dialect is PostgreSQL.
()
| 3323 | |
| 3324 | // postgres reports if the builder dialect is PostgreSQL. |
| 3325 | func (b Builder) postgres() bool { |
| 3326 | return b.Dialect() == dialect.Postgres |
| 3327 | } |
| 3328 | |
| 3329 | // sqlite reports if the builder dialect is SQLite. |
| 3330 | func (b Builder) sqlite() bool { |
no test coverage detected