(
&self,
name: &str,
schema: &[(&'static str, AlgebraicType)],
indexes: &[ColId],
)
| 1213 | } |
| 1214 | |
| 1215 | pub fn create_table_for_test( |
| 1216 | &self, |
| 1217 | name: &str, |
| 1218 | schema: &[(&'static str, AlgebraicType)], |
| 1219 | indexes: &[ColId], |
| 1220 | ) -> Result<TableId, DBError> { |
| 1221 | self.create_table_for_test_with_access(name, schema, indexes, StAccess::Public) |
| 1222 | } |
| 1223 | |
| 1224 | pub fn create_table_for_test_multi_column( |
| 1225 | &self, |