postgresql/src/backend/parser
1999-12-09 19:15:45 +00:00
..
.cvsignore Add .cvsignore file so cvs doesn't complain if you have lex/yacc 1999-03-21 02:43:58 +00:00
analyze.c Completed FOREIGN KEY syntax. 1999-12-06 18:02:47 +00:00
gram.y Completed FOREIGN KEY syntax. 1999-12-06 18:02:47 +00:00
keywords.c create/alter user extension 1999-11-30 03:57:29 +00:00
Makefile Make LD -r as macros that can be changed for QNX. 1999-12-09 19:15:45 +00:00
parse_agg.c Replace generic 'Illegal use of aggregates' error message with one that 1999-12-09 05:58:56 +00:00
parse_clause.c I have a patch for postgresql-snapshot(1999-10-22). 1999-10-22 11:51:35 +00:00
parse_coerce.c Add system indexes to match all caches. 1999-11-22 17:56:41 +00:00
parse_expr.c Implement subselects in target lists. Also, relax requirement that 1999-11-15 02:00:15 +00:00
parse_func.c Clean up memory leakage in find_inheritors() by using pg_list lists 1999-12-07 04:09:39 +00:00
parse_node.c Add system indexes to match all caches. 1999-11-22 17:56:41 +00:00
parse_oper.c Add system indexes to match all caches. 1999-11-22 17:56:41 +00:00
parse_relation.c New NameStr macro to convert Name to Str. No need for var.data anymore. 1999-11-07 23:08:36 +00:00
parse_target.c Add system indexes to match all caches. 1999-11-22 17:56:41 +00:00
parse_type.c Add system indexes to match all caches. 1999-11-22 17:56:41 +00:00
parser.c Move some system includes into c.h, and remove duplicates. 1999-07-17 20:18:55 +00:00
README cleanup 1998-08-23 14:43:46 +00:00
scan.l Remove fixed-size literal buffer from scan.l, and repair 1999-10-18 02:42:31 +00:00
scansup.c Eliminate token length assumption in scanstr(). 1999-09-11 22:26:47 +00:00

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

parser.c	things start here
scan.l		break query into tokens
scansup.c	handle escapes in input
keywords.c	turn keywords into specific tokens
gram.y		parse the tokens and fill query-type-specific structures
analyze.c	handle post-parse processing for each query type
parse_clause.c	handle clauses like WHERE, ORDER BY, GROUP BY, ...
parse_coerce.c	used for coercing expressions of different types
parse_expr.c	handle expressions like col, col + 3, x = 3 or x = 4
parse_oper.c	handle operations 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 type handling