postgresql/src/backend/parser
1999-05-19 17:53:12 +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 Change resjunk to a boolean. 1999-05-17 17:03:51 +00:00
gram.y Remove 4096 string limited key on block size 1999-05-19 17:53:12 +00:00
keywords.c Add keywords to implement Vadim's transaction isolation 1999-05-12 07:22:52 +00:00
Makefile here are some patches for 6.5.0 which I already submitted but have never 1999-05-03 19:10:48 +00:00
parse_agg.c Replaced targetlist entry in GroupClause by reference number 1999-05-12 15:02:39 +00:00
parse_clause.c Skip junk nodes when comparing UNION target list lengths. 1999-05-17 18:22:19 +00:00
parse_coerce.c Upgrade to PyGreSQL (2.4) 1999-05-19 16:46:12 +00:00
parse_expr.c Add Aggref and ArrayRef to the set of node types that transformExpr 1999-05-18 23:40:05 +00:00
parse_func.c Change resjunk to a boolean. 1999-05-17 17:03:51 +00:00
parse_node.c Change error messages to oids come out as %u and not %d. Change has no 1999-05-10 00:46:32 +00:00
parse_oper.c Change error messages to oids come out as %u and not %d. Change has no 1999-05-10 00:46:32 +00:00
parse_relation.c Change resjunk to a boolean. 1999-05-17 17:03:51 +00:00
parse_target.c Change resjunk to a boolean. 1999-05-17 17:03:51 +00:00
parse_type.c Change error messages to oids come out as %u and not %d. Change has no 1999-05-10 00:46:32 +00:00
parser.c Rip out QueryTreeList structure, root and branch. Querytree 1999-05-13 07:29:22 +00:00
README cleanup 1998-08-23 14:43:46 +00:00
scan.l Keep long non-quoted numeric strings *as* untyped strings if they fail 1999-05-12 07:12:51 +00:00
scansup.c Change my-function-name-- to my_function_name, and optimizer renames. 1999-02-13 23:22:53 +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