sqlite_fdw icon indicating copy to clipboard operation
sqlite_fdw copied to clipboard

Foreign Data Wrapper for sqlite

Results 6 sqlite_fdw issues
Sort by recently updated
recently updated
newest added

I have a sqlite database with blob columns. When I run the following query in sqlite, I'm seeing sizes around 1900 SELECT length(tile_data) from tiles limit 100; After creating the...

This commit did away with `ExecStoreTuple` and introduced `ExecStoreHeapTuple` instead.

Hallo, the code generated by import foreign schema only generates the headers, not the datatypes. CREATE FOREIGN TABLE public.vrijetijdextra ( "1" , ... "J1_6" ) .. Can anyone confirm this?

Hi Guillaume! Suppose I create a sqlite_fdw for such db: ```sql -- sqlite3 test.db Create Table test ( id integer Primary Key autoincrement, data blob ); Insert Into test( data...

Any plans to support Aggregate Pushdown in v10?

Hi, I can see in Makefile that the logic for running regression tests exists, but the directory test/ is not there. Does that exist elsewhere? Could it be added here,...