You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
D install 'build/release/extension/rocksdb_scanner/rocksdb_scanner.duckdb_extension';
13
+
D load 'build/release/extension/rocksdb_scanner/rocksdb_scanner.duckdb_extension';
14
+
D select * from duckdb_extensions();
15
+
...
16
+
│ rocksdb_scanner │ true │ true │ /home/hinxx/.duckdb/extensions/ab9736bed0/linux_amd… │ Adds support for reading RocksDB database files │ [] │
17
+
...
18
+
19
+
D .maxrows 10000
20
+
D select distinct on(function_name) function_name, function_type, return_type, parameters, parameter_types from duckdb_functions() order by function_name;
The sqlitescanner extension allows DuckDB to directly read data from a SQLite database file. The data can be queried directly from the underlying SQLite tables, or read into DuckDB tables.
@@ -17,22 +45,22 @@ PRAGMA show_tables;
17
45
Then you can query those views normally using SQL, e.g. using the example queries from sakila-examples.sql
0 commit comments