| 397 | } |
| 398 | |
| 399 | type BulkDdlStatement struct { |
| 400 | Ddls []string |
| 401 | } |
| 402 | |
| 403 | func (s *BulkDdlStatement) Execute(ctx context.Context, session *Session) (*Result, error) { |
| 404 | return executeDdlStatements(ctx, session, s.Ddls) |
nothing calls this directly
no outgoing calls
no test coverage detected