-
support mysql binary/varbinary data types in `mysqlImportForeignSchema()`.
currently - mysql_fdw doesn't apply any mapping to Postgres for these types, which results in error when running "IMPORT FOR…
-
Hello,
When I try to use Postgres 9.6 tds_fdw using UTF-8 character set... it's throwing error for a couple of tables...
test=# select * from test_fdw.labels;
NOTICE: DB-Library notice: Msg #:…
-
Hello.
When I'm trying to upgrade an existing extension:
# alter extension tds_fdw update;
ERROR: extension "tds_fdw" has no update path from version "2.0.0-alpha.3" to version "2.0.1"
But cr…
ghost updated
4 years ago
-
When i am creating extension the following error occurred.
postgres=# create extension tds_fdw;
**ERROR: incompatible library "/opt/rh/rh-postgresql96/root/usr/lib64/pgsql/tds_fdw.so": version mi…
-
CREATE FOREIGN TABLE foo_fdw
(
)
SERVER foo_server
OPTIONS (
query $xy$select 1$xy$,
match_column_names 'no')
crashes postgres in my variant although it is legal syntax
-
```
PG::InternalError:` ERROR: RETURNING is not supported by this FDW :
INSERT INTO "crm_accounts" ("date_entered", "date_modified", "id") VALUES ($1, $2, $3) RETURNING "id"
/sg1/web/beaumont/beaumo…
-
I'm using Saiuku with Mondrian 4 and CitusDB's [cstore_fdw](https://github.com/citusdata/cstore_fdw) for storing the fact tables.
Mondrian can't retrive the FTs from Postgres and that's something ver…
-
1. mysql table with `val float` column, two rows with values `0` and `0.1`.
2. import as mysql_fdw foreign table into postgres, type of `val` becomes `real`
3. (default) `mysql_fdw_pushdown.config` …
-
I have a mysql table:
``` sql
CREATE TABLE `redirect` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`searchId` char(36) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `searchId` (`searchId`)
)
```
Note tha…
-