postgresql/src/backend/parser
Tom Lane 95b07bc7f5 Support window functions a la SQL:2008.
Hitoshi Harada, with some kibitzing from Heikki and Tom.
2008-12-28 18:54:01 +00:00
..
.cvsignore Remove all traces that suggest that a non-Bison yacc might be supported, and 2008-08-29 13:02:33 +00:00
analyze.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
gram.y Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
keywords.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
Makefile Implement SQL-standard WITH clauses, including WITH RECURSIVE. 2008-10-04 21:56:55 +00:00
parse_agg.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
parse_clause.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
parse_coerce.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
parse_cte.c Modify the parser's error reporting to include a specific hint for the case 2008-10-08 01:14:44 +00:00
parse_expr.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
parse_func.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
parse_node.c Add a bunch of new error location reports to parse-analysis error messages. 2008-09-01 20:42:46 +00:00
parse_oper.c Improve the plan cache invalidation mechanism to make it invalidate plans 2008-09-09 18:58:09 +00:00
parse_relation.c Modify the parser's error reporting to include a specific hint for the case 2008-10-08 01:14:44 +00:00
parse_target.c Improve parser error location for cases where an INSERT or UPDATE command 2008-10-07 01:47:55 +00:00
parse_type.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
parse_utilcmd.c Support window functions a la SQL:2008. 2008-12-28 18:54:01 +00:00
parser.c Add WITH [NO] DATA clause to CREATE TABLE AS, per SQL. 2008-10-28 14:09:45 +00:00
README Small wording improvements for source code READMEs. 2008-04-09 01:00:46 +00:00
scan.l Unicode escapes in strings and identifiers 2008-10-29 08:04:54 +00:00
scansup.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00

$PostgreSQL: pgsql/src/backend/parser/README,v 1.10 2008/04/09 01:00:46 momjian Exp $

Parser
======

This directory does more than tokenize and parse SQL queries.  It also
creates Query structures for the various complex queries that are passed
to the optimizer and then executor.

parser.c	things start here
scan.l		break query into tokens
scansup.c	handle escapes in input strings
keywords.c	turn keywords into specific tokens
gram.y		parse the tokens and fill query-type-specific structures
analyze.c	top level of parse analysis for optimizable queries
parse_clause.c	handle clauses like WHERE, ORDER BY, GROUP BY, ...
parse_coerce.c	handle coercing expressions to different data types
parse_expr.c	handle expressions like col, col + 3, x = 3 or x = 4
parse_oper.c	handle operators in expressions
parse_agg.c	handle aggregates, like SUM(col1),  AVG(col2), ...
parse_func.c	handle functions, table.column and column identifiers
parse_node.c	create nodes for various structures
parse_target.c	handle the result list of the query
parse_relation.c support routines for tables and column handling
parse_type.c	support routines for data type handling
parse_utilcmd.c	parse analysis for utility commands (done at execution time)