Move DbResult into its own file

This commit is contained in:
Yuriy Dupyn 2023-12-29 07:49:17 +01:00
parent d87c95f1e1
commit 4f2c864d7a
5 changed files with 9 additions and 5 deletions

View file

@ -1,6 +1,7 @@
use bimap::BiMap;
use crate::result::DbResult;
use crate::type_system::{Value, DbType, IndexableValue};
use crate::internals::schema::{TableName, TableSchema, ColumnName, DbResult};
use crate::internals::schema::{TableName, TableSchema, ColumnName};
use crate::internals::table::Table;
use crate::internals::row::{Row, ColumnPosition};
use crate::error::Error;