Обсуждение: pgsql/src/backend/parser (analyze.c gram.y parse_agg.c parse_clause.c parse_expr.c parse_func.c parse_node.c parse_relation.c parse_target.c)

Поиск
Список
Период
Сортировка
  Date: Friday, September 29, 2000 @ 14:21:36
Author: tgl

Update of /home/projects/pgsql/cvsroot/pgsql/src/backend/parser
     from hub.org:/home/projects/pgsql/tmp/cvs-serv27889/src/backend/parser

Modified Files:
    analyze.c gram.y parse_agg.c parse_clause.c parse_expr.c
    parse_func.c parse_node.c parse_relation.c parse_target.c

-----------------------------  Log Message  -----------------------------

Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.
(Don't forget that an alias is required.)  Views reimplemented as expanding
to subselect-in-FROM.  Grouping, aggregates, DISTINCT in views actually
work now (he says optimistically).  No UNION support in subselects/views
yet, but I have some ideas about that.  Rule-related permissions checking
moved out of rewriter and into executor.
INITDB REQUIRED!