-
After Tiering Data, I found that I can still insert data, but I cannot add or modify columns in remote tables. Is there any way to achieve this?
-
Where is the extension control file? Is there a way to install this somewhere that doesn't have apt?
-
FDW seems to not pushdown JOIN of subqueries if they contain GROUP BY inside.
```
SELECT * FROM
(
SELECT sale_id FROM sales
) a
JOIN
(
SELECT sale_id, product_id FROM products
) b ON a.sal…
-
If ereport(ERROR, ) present before ereport((DEBUG3, ), then the second statement will not run.
For example:
line 1411 of jq.c:
ereport(ERROR, (errmsg("remote server returned an error")));
er…
-
# Issue report
Backslashes in queries
## Operating system
```
PRETTY_NAME="Ubuntu 22.04.1 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.1 LTS (Jammy Jellyfish)"
```
## Version …
-
## Describe the problem
* Support PostgreSQL 17
## Describe the proposal
```
$ rpmbuild --with debuginfo --define "pgmajorversion 17" -ba ~/rpmbuild/SPECS/log_fdw.spec
Executing(%prep): /bi…
Vonng updated
1 month ago
-
Hello, I have this table in sql server 2014
```
CREATE TABLE [dbo].[MYTABLE](
[MYDATE] [date] NULL,
[COLUMN1] [varchar](20) NULL,
[COLUMN2] [float] NULL
) ON [PRIMARY]
```
I made a forei…
-
See previous issue: https://github.com/EnterpriseDB/mysql_fdw/issues/27
I got the same problem with a longtext field in Mysql that block the selection of rows. If I unselect the field I got all my ro…
-
**Situations and Concerns**
1. When FDW updates or changes metadata (e.g., year shift, change or introduction of a new product name, season name, CPS, etc.), it affects:
a. External crop calendar
…
-
Given the following SQL:
```sql
select "name" from fake.person;
```
I get the following error in the Postgres logs:
```
Error in python: TypeError
File "/usr/local/lib/python3.7/dist-…
W1M0R updated
3 years ago