diff --git a/src/sqlite/def/column.rs b/src/sqlite/def/column.rs index 7b42ed4..e4be4c3 100644 --- a/src/sqlite/def/column.rs +++ b/src/sqlite/def/column.rs @@ -166,6 +166,7 @@ impl From<(&SqliteRow, &[SqliteRow])> for IndexedColumns { /// Confirms if a table's primary key is set to autoincrement as a result of using query /// `SELECT COUNT(*) from sqlite_sequence where name = 'table_name'; +#[allow(dead_code)] #[derive(Debug, Default, Clone)] pub(crate) struct PrimaryKeyAutoincrement(pub(crate) u8);