Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No filter nor Aggregate push down #10

Open
legrandlegrand opened this issue Oct 19, 2017 · 1 comment
Open

No filter nor Aggregate push down #10

legrandlegrand opened this issue Oct 19, 2017 · 1 comment

Comments

@legrandlegrand
Copy link

Hello,
Having this Foreign Data Wrapper is a very interesting thing !
I have just build and installed it, and cheched what was the SQL syntax sent to monetdb:

on postgres:
CREATE FOREIGN TABLE person (id integer, name varchar(40)) SERVER monetdb_server ...
;
SELECT count(*),name FROM person
where id=1
group by name
;

on monetdb:
call querylog_enable()
;
select * from sys.querylog_history
;

gives the statement
select * from person;

does that mean that there is no Filter nor Aggregate push down ?

Thanks in advance
Regards
PAscal

@legrandlegrand
Copy link
Author

Latest postgres_fdw extension https://github.com/postgres/postgres/tree/master/contrib/postgres_fdw supports Filter and Aggregate pushdown (as many other features).
But it is a quite big developpment !
May be one day somebody will merge postgres_fdw and monetdb_fdw, then I'm available for testing ;o)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant