(ine bool)
| 222 | } |
| 223 | |
| 224 | func (b *CreateTableSqlBuilder) SetIfNotExists(ine bool) *CreateTableSqlBuilder { |
| 225 | b.IfNotExists = ine |
| 226 | return b |
| 227 | } |
| 228 | |
| 229 | func (b *CreateTableSqlBuilder) ToSQL() (string, error) { |
| 230 | var str strings.Builder |
no outgoing calls