(ctx context.Context, session *Session)
| 393 | } |
| 394 | |
| 395 | func (s *DdlStatement) Execute(ctx context.Context, session *Session) (*Result, error) { |
| 396 | return executeDdlStatements(ctx, session, []string{s.Ddl}) |
| 397 | } |
| 398 | |
| 399 | type BulkDdlStatement struct { |
| 400 | Ddls []string |
nothing calls this directly
no test coverage detected