sqlite reports if the builder dialect is SQLite.
()
| 3328 | |
| 3329 | // sqlite reports if the builder dialect is SQLite. |
| 3330 | func (b Builder) sqlite() bool { |
| 3331 | return b.Dialect() == dialect.SQLite |
| 3332 | } |
| 3333 | |
| 3334 | // fromIdent sets the builder dialect from the identifier format. |
| 3335 | func (b *Builder) fromIdent(ident string) { |
no test coverage detected