| 1940 | |
| 1941 | #[derive(Clone, Debug)] |
| 1942 | pub struct Index { |
| 1943 | /// Parse-able SQL that is stored durably and defines this index. |
| 1944 | pub create_sql: String, |
| 1945 | /// Collection this index is on top of. |
| 1946 | pub on: GlobalId, |
| 1947 | pub keys: Vec<mz_expr::MirScalarExpr>, |
| 1948 | pub compaction_window: Option<CompactionWindow>, |
| 1949 | pub cluster_id: ClusterId, |
| 1950 | } |
| 1951 | |
| 1952 | #[derive(Clone, Debug)] |
| 1953 | pub struct Type { |
no outgoing calls
no test coverage detected