From: | Shigeru Hanada <shigeru(dot)hanada(at)gmail(dot)com> |
---|---|
To: | Kouhei Kaigai <kaigai(at)ak(dot)jp(dot)nec(dot)com> |
Cc: | Kohei KaiGai <kaigai(at)kaigai(dot)gr(dot)jp>, Simon Riggs <simon(at)2ndquadrant(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Stephen Frost <sfrost(at)snowman(dot)net>, Robert Haas <robertmhaas(at)gmail(dot)com>, Andres Freund <andres(at)2ndquadrant(dot)com>, PgHacker <pgsql-hackers(at)postgresql(dot)org>, Jim Mlodgenski <jimmy76(at)gmail(dot)com>, Peter Eisentraut <peter_e(at)gmx(dot)net> |
Subject: | Re: [v9.5] Custom Plan API |
Date: | 2014-07-14 10:07:59 |
Message-ID: | CAEZqfEf4OMHK3mqxLzdBo4QMUUZ-3rM4jSDFH2TyC9hvkzs-NQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Kaigai-san,
The v3 patch had conflict in src/backend/tcop/utility.c for newly
added IMPORT FOREIGN SCHEMA statement, but it was trivial.
2014-07-08 20:55 GMT+09:00 Kouhei Kaigai <kaigai(at)ak(dot)jp(dot)nec(dot)com>:
> * System catalog name was changed to pg_custom_plan_provider;
> that reflects role of the object being defined.
ISTM that doc/src/sgml/custom-plan.sgml should be also renamed to
custom-plan-provider.sgml.
> * Also, prefix of its variable names are changed to "cpp"; that
> means custom-plan-provider.
A "custclass" remains in a comment in
src/include/catalog/pg_custom_plan_provider.h.
> * Syntax also reflects what the command does more. New syntax to
> define custom plan provider is:
> CREATE CUSTOM PLAN PROVIDER <cpp_name>
> FOR <cpp_class> HANDLER <cpp_function>;
> * Add custom-plan.sgml to introduce interface functions defined
> for path/plan/exec methods.
> * FinalizeCustomPlan() callback was simplified to support scan
> (and join in the future) at the starting point. As long as
> scan/join requirement, no need to control paramids bitmap in
> arbitrary way.
> * Unnecessary forward declaration in relation.h and plannode.h
> were removed, but a few structures still needs to have
> forward declarations.
> * Fix typos being pointed out.
Check. I found some typos and a wording "datatype" which is not used
in any other place. Please refer the attached patch.
--
Shigeru HANADA
Attachment | Content-Type | Size |
---|---|---|
fix_typo_in_v3.patch | application/octet-stream | 4.2 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Abhijit Menon-Sen | 2014-07-14 10:11:15 | Re: issue log message to suggest VACUUM FULL if a table is nearly empty |
Previous Message | Kyotaro HORIGUCHI | 2014-07-14 09:14:30 | Re: WAL replay bugs |