| 1528 | |
| 1529 | #[derive(Clone, Debug)] |
| 1530 | pub struct Table { |
| 1531 | pub create_sql: String, |
| 1532 | pub desc: VersionedRelationDesc, |
| 1533 | pub temporary: bool, |
| 1534 | pub compaction_window: Option<CompactionWindow>, |
| 1535 | pub data_source: TableDataSource, |
| 1536 | } |
| 1537 | |
| 1538 | #[derive(Clone, Debug)] |
| 1539 | pub struct Source { |
no outgoing calls