-
Notifications
You must be signed in to change notification settings - Fork 37
Closed
Description
I got an invalid error Invalid Error: FLOAT while trying to read an attached SQLite table with a real/float column. Here are the steps to reproduce:
Create a SQLite database:
echo "CREATE TABLE my (a REAL); INSERT INTO my VALUES (10.34), (0.042);" | sqlite3 my.dbAttach it from DuckDB (./build/release/duckdb -unsigned):
D LOAD 'build/release/extension/sqlite_scanner/sqlite_scanner.duckdb_extension';
D CALL sqlite_attach('my.db');
D SELECT * FROM my;
Error: Invalid Error: FLOAT
I was able to load tables of other data types (e.g., text, integer).
Also, thank you for making this extension. Now it's much easier to transfer/load data from existing SQLite databases to DuckDB.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels