Re: Adding XMLEXISTS to the grammar

Поиск
Список
Период
Сортировка
От Mike Fowler
Тема Re: Adding XMLEXISTS to the grammar
Дата
Msg-id 4C20F03A.5010001@mlfowler.com
обсуждение исходный текст
Ответ на Re: Adding XMLEXISTS to the grammar  (Robert Haas <robertmhaas@gmail.com>)
Ответы Re: Adding XMLEXISTS to the grammar  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
> Look at how the POSITION() pseudofunction is defined around gram.y
> line 9651.  Essentially any special syntax of this type gets converted
> to a regular function call internally.  So in your case I think there
> will be some function that gets called something ike this:
>
> xmlexists(xpath_expression, xml_expression)
>
> ...but the grammar can be modified to allow a different syntax for
> that function call.
>   
I've finally managed to get gram.y to parse the syntax correctly. After 
progressing from a segmentation fault that occured when the grammar was 
correct I'm now left with a cryptic error:

xmltest=# SELECT COUNT(id) FROM xmltest WHERE xmlexists('/menu/beers' 
PASSING BY REF data);
ERROR:  unrecognized node type: 1852140847

At a guess there is another step that I need to do after modifying 
gram.y. One mailing list posting I found mentioned copyfuncs.c but 
really I'm unsure as to what next. Anyone know what the missing step is?

Regards,

-- 
Mike Fowler
Registered Linux user: 379787



В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: TCP keepalive support for libpq
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: missing "else" in postmaster.c?