diff options
author | Teddy Wing | 2022-03-19 16:19:26 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-19 16:19:26 +0100 |
commit | bb9f0ee38809ab0b41d66ced950c034101862a59 (patch) | |
tree | 87e5330f2e6fd78dd970aa754169e6047025a7dd /src/lib.rs | |
parent | 38f70de064fd9ed1e66a5da4007e7364a4a7d363 (diff) | |
download | yaqlite-bb9f0ee38809ab0b41d66ced950c034101862a59.tar.bz2 |
main: If `primary_key` option is given, select by given column name
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ pub mod sqlite; pub mod yaml; -pub use select::select; +pub use select::*; #[derive(thiserror::Error, Debug)] |