aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2022-03-09 00:39:53 +0100
committerTeddy Wing2022-03-09 00:39:53 +0100
commitaaf02280c85db648de5788bc8509c0918fb6c369 (patch)
tree9b88e2f54b02fa6ccbf4612bedcd11dcd5b78418 /src
parent13ff6a600c42960cc60111ba1a7c661aa6aef334 (diff)
downloadyaqlite-aaf02280c85db648de5788bc8509c0918fb6c369.tar.bz2
Add TODO for column type
Want to translate YAML types to SQLite types.
Diffstat (limited to 'src')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 0fc81bb..9ea03f4 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -85,6 +85,7 @@ fn get_column_names(dbconn: &rusqlite::Connection) -> HashMap<String, Zero> {
).unwrap();
for row in rows {
+ // TODO: Get the type of the column.
column_names.insert(row.unwrap(), Zero{});
}