(schema string)
| 3065 | } |
| 3066 | |
| 3067 | func (b *Builder) writeSchema(schema string) { |
| 3068 | if schema != "" && b.dialect != dialect.SQLite { |
| 3069 | b.Ident(schema).WriteByte('.') |
| 3070 | } |
| 3071 | } |
| 3072 | |
| 3073 | // Err returns a concatenated error of all errors encountered during |
| 3074 | // the query-building, or were added manually by calling AddError. |