| 455 | } |
| 456 | |
| 457 | type ShowCreateTableStatement struct { |
| 458 | Schema string |
| 459 | Table string |
| 460 | } |
| 461 | |
| 462 | func (s *ShowCreateTableStatement) Execute(ctx context.Context, session *Session) (*Result, error) { |
| 463 | result := &Result{ColumnNames: []string{"Table", "Create Table"}} |
nothing calls this directly
no outgoing calls
no test coverage detected