(s string)
| 754 | } |
| 755 | |
| 756 | func extractSchemaAndTable(s string) (string, string) { |
| 757 | schema, table, found := strings.Cut(s, ".") |
| 758 | if !found { |
| 759 | return "", unquoteIdentifier(s) |
| 760 | } |
| 761 | return unquoteIdentifier(schema), unquoteIdentifier(table) |
| 762 | } |
| 763 | |
| 764 | type ShowIndexStatement struct { |
| 765 | Schema string |