Help with gram.y (UNDER)

Поиск
Список
Период
Сортировка
От Chris Bitmead
Тема Help with gram.y (UNDER)
Дата
Msg-id 392BD4BF.F305160C@bitmead.com
обсуждение исходный текст
Список pgsql-hackers
Can someone give be a bit of help with gram.y to get this UNDER syntax
right? I did what I though was the obvious  syntax, but it no longer
accepts a plain create table after this change...

OptUnder: UNDER relation_name_list     { $$ = $2; }       | /*EMPTY*/       { $$ = NIL; } ;



CreateStmt:  CREATE OptTemp TABLE relation_name OptUnder '('
OptTableElementList ')' OptInherit        {                   /*etc */        }    ;

The full patch is here...
ftp://ftp.tech.com.au/pub/diff.x


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

Предыдущее
От: Olivier PRENANT
Дата:
Сообщение: Perl 5.6.0
Следующее
От: Chris Bitmead
Дата:
Сообщение: Re: Help with gram.y (UNDER)