CreateTable implements sql.TableCreator.
(ctx *sql.Context, name string, schema sql.PrimaryKeySchema, collation sql.CollationID, comment string)
| 281 | b.WriteString(";") |
| 282 | b.WriteString(s) |
| 283 | } |
| 284 | |
| 285 | ddl := b.String() |
| 286 | |
| 287 | if logger := ctx.GetLogger(); logger.Logger.GetLevel() >= logrus.DebugLevel { |
| 288 | logger.WithField("DuckSQL", ddl).Debug("Executing DDL") |
| 289 | } |
| 290 |
nothing calls this directly
no test coverage detected