postgresql/src/backend/parser
Peter Eisentraut 4ceb2d0cb6 * User management commands no longer user pg_exec_query_dest -> more robust
* Let unprivileged users change their own passwords.

* The password is now an Sconst in the parser, which better reflects its text datatype and also
forces users to quote them.

* If your password is NULL you won't be written to the password file, meaning you can't connect
until you have a password set up (if you use password authentication).

* When you drop a user that owns a database you get an error. The database is not gone.
2000-01-14 22:11:38 +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 Move fixes for >8 indexed fields. 2000-01-10 05:20:26 +00:00
gram.y * User management commands no longer user pg_exec_query_dest -> more robust 2000-01-14 22:11:38 +00:00
keywords.c create/alter user extension 1999-11-30 03:57:29 +00:00
Makefile New LDOUT makefile variable for QNX os. 1999-12-13 22:35:27 +00:00
parse_agg.c aggregate(DISTINCT ...) works, per SQL spec. 1999-12-13 01:27:21 +00:00
parse_clause.c Re-enable makeAttr() if ENABLE_OUTER_JOINS is defined. 1999-12-17 14:47:35 +00:00
parse_coerce.c Make number of args to a function configurable. 2000-01-10 17:14:46 +00:00
parse_expr.c Clean up handling of explicit NULL constants. Cases like 1999-12-24 06:43:34 +00:00
parse_func.c Make number of args to a function configurable. 2000-01-10 17:14:46 +00:00
parse_node.c Clean up handling of explicit NULL constants. Cases like 1999-12-24 06:43:34 +00:00
parse_oper.c any_ordering_op()'s argument should be declared Oid not int. 1999-12-12 20:51:29 +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 Make number of args to a function configurable. 2000-01-10 17:14:46 +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