We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
UPDATE
DELETE
CREATE TABLE "base"(i int); CREATE FOREIGN TABLE IF NOT EXISTS "foreign"() INHERITS ("base") SERVER mysql OPTIONS (dbname 'db', table_name 'remote');
UPDATE "base" SET i = 0 WHERE i = 1; DELETE FROM "base" WHERE i = 0;
all of them will return
[HV005] ERROR: system attribute "tableoid" can't be fetched from remote relation
but
INSERT INTO "base"(i) VALUES (1); UPDATE ONLY "base" SET i = 0 WHERE i = 1; DELETE FROM ONLY "base" WHERE i = 0;
works fine and will only INSERT/UPDATE/DELETEed on the base table not to the foreign one.
INSERT
base
foreign
The text was updated successfully, but these errors were encountered:
Hi @n0099,
Thanks for reporting this issue. I can reproduce the same at my end. We will check the feasibility of fixing this at our end.
Sorry, something went wrong.
No branches or pull requests
all of them will return
but
works fine and will only
INSERT
/UPDATE
/DELETE
ed on thebase
table not to theforeign
one.The text was updated successfully, but these errors were encountered: