firebird_fdw
firebird_fdw : Foreign data wrapper for Firebird
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 8750 | firebird_fdw | firebird_fdw | 1.4.2 |
FDW | PostgreSQL | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --s-d-r | No | Yes | No | Yes | yes | no |
| Relationships | |
|---|---|
| See Also | mysql_fdw tds_fdw db2_fdw oracle_fdw sqlite_fdw informix_fdw postgres_fdw db2fce orafce db_migrator |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 1.4.2 |
18 17 16 15 14 | firebird_fdw |
- |
| RPM | PIGSTY | 1.4.2 |
18 17 16 15 14 | firebird_fdw_$v |
libfq |
| DEB | PIGSTY | 1.4.2 |
18 17 16 15 14 | postgresql-$v-firebird-fdw |
libfq |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| el8.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| el9.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| el9.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| el10.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| el10.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| d12.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| d12.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| d13.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| d13.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| u22.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| u22.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| u24.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| u24.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| u26.x86_64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
| u26.aarch64 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 | PIGSTY 1.4.2 |
Source
github.com/ibarwick/firebird_fdw
firebird_fdw-1.4.2.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Create this extension with:
Usage
Sources: upstream README, 1.4.2 README, 1.4.2 tag.
firebird_fdw connects PostgreSQL to Firebird databases through the foreign data wrapper API. It supports reads, writes, IMPORT FOREIGN SCHEMA, predicate pushdown for supported expressions, connection caching, and foreign-table TRUNCATE on PostgreSQL 14+.
Create Server
Server options include:
address, defaultlocalhost.port, default3050.database, the Firebird database name or path.updatable, defaulttrue; table-level settings can override it.disable_pushdowns, useful for debugging or benchmarking.quote_identifiers, to quote table and column identifiers by default.implicit_bool_type, for integer-backed Firebird boolean columns.batch_size, for multi-row inserts on PostgreSQL 14+.
Create User Mapping
Create Foreign Table
With column name mapping:
With a custom query, the foreign table is read-only:
Table options include table_name, query, updatable, estimated_row_count, quote_identifier, and batch_size. Column options include column_name, quote_identifier, and implicit_bool_type.
Import Foreign Schema
Import options include import_not_null, import_views, updatable, and verbose. The schema name has no special Firebird meaning and can be any value accepted by PostgreSQL’s IMPORT FOREIGN SCHEMA syntax.
CRUD Operations
UPDATE and DELETE use Firebird’s RDB$DB_KEY. TRUNCATE is implemented as an unqualified Firebird DELETE because Firebird has no native TRUNCATE statement.
Utility Functions
firebird_fdw_version()returns the FDW version as an integer.firebird_fdw_close_connections()closes cached Firebird connections for the current PostgreSQL session.firebird_fdw_server_options(servername text)shows effective server option values and whether each was explicitly provided.firebird_fdw_diag()returns diagnostic key/value data, including FDW andlibfqversions.firebird_version()reports Firebird server versions for configured foreign servers and may open connections to do so.
Caveats
- Pigsty packages
firebird_fdw1.4.2 for PostgreSQL 14-18. Upstream documents compatibility with PostgreSQL 10-19, with newer FDW API features available only on newer PostgreSQL releases. - Upstream supports Firebird 2.5 and later; older Firebird versions are not a tested target.
firebird_fdwandlibfqare developed together, so package compatibility depends on matching those libraries.- Custom-query foreign tables cannot be updated.
- The
implicit_bool_typefeature is experimental and is designed around integer columns representing boolean values.