SetDialect sets the builder dialect. It's used for garnering dialect specific queries.
(dialect string)
| 3285 | |
| 3286 | // SetDialect sets the builder dialect. It's used for garnering dialect specific queries. |
| 3287 | func (b *Builder) SetDialect(dialect string) { |
| 3288 | b.dialect = dialect |
| 3289 | } |
| 3290 | |
| 3291 | // Dialect returns the dialect of the builder. |
| 3292 | func (b Builder) Dialect() string { |