| From: | Robert Haas <robertmhaas(at)gmail(dot)com> |
|---|---|
| To: | Ashutosh Bapat <ashutosh(dot)bapat(at)enterprisedb(dot)com> |
| Cc: | pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Fabrízio Mello <fabriziomello(at)gmail(dot)com> |
| Subject: | Re: Getting sorted data from foreign server |
| Date: | 2015-11-03 18:05:23 |
| Message-ID: | CA+TgmoZj=W5o-dKqAOHMxGnUhm+P-TLJtSN8CJzu4AQ_=GJgUg@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
On Fri, Oct 30, 2015 at 6:19 AM, Ashutosh Bapat
<ashutosh(dot)bapat(at)enterprisedb(dot)com> wrote:
> If there is a collate clause in the ORDER BY, the server crashes with
> assertion
> + Assert(loc_cxt.state == FDW_COLLATE_NONE ||
> + loc_cxt.state == FDW_COLLATE_SAFE);
>
>
> The assertion is fine as long as is_foreign_expr() tests only boolean
> expressions (appearing in quals). This patch uses the function to test an
> expression appearing in ORDER BY clause, which need not be boolean. Attached
> patch removed the assertion and instead makes the function return false,
> when the walker deems collation of the expression unsafe. The walker can not
> return false when it encounter unsafe expression since the subtree it's
> examining might be part of an expression which does not use the collation
> ultimately.
I've committed this version.
--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Neil Tiffin | 2015-11-03 18:39:47 | Re: [patch] to build docs on Mac OS X El Capitan with MacPorts |
| Previous Message | Robert Haas | 2015-11-03 17:38:22 | Re: September 2015 Commitfest |