pgspider / sqlite_fdw

SQLite Foreign Data Wrapper for PostgreSQL
Other
219 stars 37 forks source link

Support 14beta2 #45

Closed namnguyen1405 closed 3 years ago

namnguyen1405 commented 3 years ago

SQLite FDW 2.1.0 Support TRUNCATE by deparsing into DELETE statement without WHERE clause. Allow control over whether foreign servers keep connections open after transaction completion. This is controlled by keep_connections and defaults to on. Support list cached connections to foreign servers by using function sqlite_fdw_get_connections() Support discard cached connections to foreign servers by using function sqlite_fdw_disconnect(), sqlite_fdw_disconnect_all(). Support Bulk Insert by using batch_size option. Refactored tests.