(&self, tx: &mut MutTx, schema: TableSchema)
| 1136 | } |
| 1137 | impl RelationalDB { |
| 1138 | pub fn create_table(&self, tx: &mut MutTx, schema: TableSchema) -> Result<TableId, DBError> { |
| 1139 | Ok(self.inner.create_table_mut_tx(tx, schema)?) |
| 1140 | } |
| 1141 | |
| 1142 | pub fn drop_table(&self, tx: &mut MutTx, table_id: TableId) -> Result<(), DBError> { |
| 1143 | let table_name = self |