postgresql/src/backend/parser
Tom Lane e0dedd0559 Implement a preliminary 'template' facility for procedural languages,
as per my recent proposal.  For now the template data is hard-wired in
proclang.c --- this should be replaced later by a new shared system
catalog, but we don't want to force initdb during 8.1 beta.  This change
lets us cleanly load existing dump files even if they contain outright
wrong information about a PL's support functions, such as a wrong path
to the shared library or a missing validator function.  Also, we can
revert the recent kluges to make pg_dump dump PL support functions that
are stored in pg_catalog.
While at it, I removed the code in pg_regress that replaced $libdir
with a hardcoded path for temporary installations.  This is no longer
needed given our support for relocatable installations.
2005-09-05 23:50:49 +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 Add NOWAIT option to SELECT FOR UPDATE/SHARE. 2005-08-01 20:31:16 +00:00
gram.y Implement a preliminary 'template' facility for procedural languages, 2005-09-05 23:50:49 +00:00
keywords.c Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump to 2005-08-23 22:40:47 +00:00
Makefile $Header: -> $PostgreSQL Changes ... 2003-11-29 19:52:15 +00:00
parse_agg.c Remove planner's private fields from Query struct, and put them into 2005-06-05 22:32:58 +00:00
parse_clause.c Replace the parser's namespace tree (which formerly had the same 2005-06-05 00:38:11 +00:00
parse_coerce.c Change expandRTE() and ResolveNew() back to taking just the single 2005-06-04 19:19:42 +00:00
parse_expr.c Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule 2005-06-26 22:05:42 +00:00
parse_func.c Add a hack requested by the JDBC driver writers: when a function's 2005-06-22 15:19:43 +00:00
parse_node.c Change the UNKNOWN type to have an internal representation matching 2005-05-30 01:20:50 +00:00
parse_oper.c Tag appropriate files for rc3 2004-12-31 22:04:05 +00:00
parse_relation.c Add NOWAIT option to SELECT FOR UPDATE/SHARE. 2005-08-01 20:31:16 +00:00
parse_target.c Add Oracle-compatible GREATEST and LEAST functions. Pavel Stehule 2005-06-26 22:05:42 +00:00
parse_type.c Add NOWAIT option to SELECT FOR UPDATE/SHARE. 2005-08-01 20:31:16 +00:00
parser.c Tag appropriate files for rc3 2004-12-31 22:04:05 +00:00
README cleanup 1998-08-23 14:43:46 +00:00
scan.l Reject operator names >= NAMEDATALEN characters. These will not work 2005-08-16 00:48:12 +00:00
scansup.c Tag appropriate files for rc3 2004-12-31 22:04:05 +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