| 389 | } |
| 390 | |
| 391 | type DdlStatement struct { |
| 392 | Ddl string |
| 393 | } |
| 394 | |
| 395 | func (s *DdlStatement) Execute(ctx context.Context, session *Session) (*Result, error) { |
| 396 | return executeDdlStatements(ctx, session, []string{s.Ddl}) |
nothing calls this directly
no outgoing calls
no test coverage detected