TRAP: FailedAssertion("!(hassrf)", File: "nodeProjectSet.c", Line: 180)

From: Erik Rijkers <er(at)xs4all(dot)nl>
To: Pgsql Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: TRAP: FailedAssertion("!(hassrf)", File: "nodeProjectSet.c", Line: 180)
Date: 2017-02-01 23:09:03
Message-ID: dcbd2853c05d22088766553d60dc78c6@xs4all.nl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Something is broken in HEAD:

drop table if exists t;
create table t(c text);
insert into t (c) values ( 'abc' ) ;

select
regexp_split_to_array(
regexp_split_to_table(
c
, chr(13) || chr(10) )
, '","' )
as a
,
regexp_split_to_table(
c
, chr(13) || chr(10)
)
as rw
from t
;

TRAP: FailedAssertion("!(hassrf)", File: "nodeProjectSet.c", Line: 180)

I realise the regexp* functions aren't doing anything particularly
useful anymore here; they did in the more complicated original (which I
had used for years).

thanks,

Erik Rijkers

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2017-02-01 23:36:11 Re: Time to up bgwriter_lru_maxpages?
Previous Message Nikita Glukhov 2017-02-01 23:02:17 Re: Cast jsonb to numeric, int, float, bool