| 1737 | /// ALTER INDEX statement |
| 1738 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 1739 | pub struct AlterIndexStatement { |
| 1740 | pub name: String, |
| 1741 | pub operation: AlterIndexOperation, |
| 1742 | pub location: Location, |
| 1743 | } |
| 1744 | |
| 1745 | /// OPTIMIZE INDEX statement |
| 1746 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected