-
Notifications
You must be signed in to change notification settings - Fork 39
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
RETURNING support #56
Comments
Also added new |
@t-kataym , if a new release is yet planned, I am ready to present |
@mkgrgis Thank you for your effort. |
Thanks for clarification, @t-kataym! I am ready to rebase existed PRs. What about testing of 2-3 obsolete PostgreSQL versions until this doesn't make a C code harder? As we can see in oracle_fdw documantation, the author doesn't exclude old pg versions from tests if this need no hard code changes. Look like he supports old pg versions until C code for new versions is formally compatible. |
We support 5 major versions of PostgreSQL . When releasing or developing new feature, we are adding and executing new tests for all old versions which we are supporting. In order to save a cost/effort, we don't support obsolete PostgreSQL versions. And tests for unsupported versions are removed. |
Author of
Why the policy "remove only if new code breaks some very old tests" is not better? Author of |
Do you mean to keep test code despite that they are not executed for the revision of source code? (Please correct me if I'm misunderstanding) |
No. Author of Oracle FDW removes tests for unsupported pg versions only if adopting of a new feature/commit to old pg versions takes unwanted cost/effort. Otherwise all tests leaves and modified as the newest one. For example, my UUID support is compatible with PostgreSQL down to 9.6 without any refactoring. So, it was no cost/effort to support old versions. But |
Judging whether we keep tests or not requires an effort. We simply keep only tests of supporting pg version. |
Yes. This is understandable unified internal procedure. Thanks for clarification, @t-kataym ! |
Thank you for your understanding. |
@t-kataym , could you please explain me better PR order for pgspider team? Now I have in my repo
Which of possible review plans will better for pgspider team? For me all of this possible PRs is simple for rebasing to any other. |
@mkgrgis Thank you for your proposal. We would appreciate it if you could carry out the following in order of priority.
|
@lamdn1409 Could you review #107 ? |
[feature request]
SQL
RETURNING
have been introduced in SQLite 3.35.0.Hence look like there is no special behaviour for
RETURNING
in SQLite not mapped to PostgreSQLRETURNING
behavoiur.The text was updated successfully, but these errors were encountered: