postgresql/src/include/parser
Tom Lane d68e08d1fe Allow the index name to be omitted in CREATE INDEX, causing the system to
choose an index name the same as it would do for an unnamed index constraint.
(My recent changes to the index naming logic have helped to ensure that this
will be a reasonable choice.)  Per a suggestion from Peter.

A necessary side-effect is to promote CONCURRENTLY to type_func_name_keyword
status, ie, it can't be a table/column/index name anymore unless quoted.
This is not all bad, since we have heard more than once of people typing
CREATE INDEX CONCURRENTLY ON foo (...) and getting a normal index build of
an index named "concurrently", which was not what they wanted.  Now this
syntax will result in a concurrent build of an index with system-chosen
name; which they can rename afterwards if they want something else.
2009-12-23 17:41:45 +00:00
..
analyze.h When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan node 2009-10-28 14:55:47 +00:00
gramparse.h Re-refactor the core scanner's API, in order to get out from under the problem 2009-11-09 18:38:48 +00:00
keywords.h Tweak the core scanner so that it can be used by plpgsql too. 2009-07-14 20:24:10 +00:00
kwlist.h Allow the index name to be omitted in CREATE INDEX, causing the system to 2009-12-23 17:41:45 +00:00
parse_agg.h Support ORDER BY within aggregate function calls, at long last providing a 2009-12-15 17:57:48 +00:00
parse_clause.h Support ORDER BY within aggregate function calls, at long last providing a 2009-12-15 17:57:48 +00:00
parse_coerce.h 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list 2009-06-11 14:49:15 +00:00
parse_cte.h Fix bug with WITH RECURSIVE immediately inside WITH RECURSIVE. 99% of the 2009-09-09 03:32:52 +00:00
parse_expr.h Update copyright for 2009. 2009-01-01 17:24:05 +00:00
parse_func.h Support ORDER BY within aggregate function calls, at long last providing a 2009-12-15 17:57:48 +00:00
parse_node.h Implement parser hooks for processing ColumnRef and ParamRef nodes, as per my 2009-10-31 01:41:31 +00:00
parse_oper.h Update copyright for 2009. 2009-01-01 17:24:05 +00:00
parse_param.h Implement parser hooks for processing ColumnRef and ParamRef nodes, as per my 2009-10-31 01:41:31 +00:00
parse_relation.h Implement parser hooks for processing ColumnRef and ParamRef nodes, as per my 2009-10-31 01:41:31 +00:00
parse_target.h Adjust naming of indexes and their columns per recent discussion. 2009-12-23 02:35:25 +00:00
parse_type.h Make backend header files C++ safe 2009-07-16 06:33:46 +00:00
parse_utilcmd.h Update copyright for 2009. 2009-01-01 17:24:05 +00:00
parser.h Remove pg_parse_string_token() --- not needed anymore. 2009-11-12 01:13:12 +00:00
parsetree.h Re-implement EvalPlanQual processing to improve its performance and eliminate 2009-10-26 02:26:45 +00:00
scanner.h Re-refactor the core scanner's API, in order to get out from under the problem 2009-11-09 18:38:48 +00:00
scansup.h Update copyright for 2009. 2009-01-01 17:24:05 +00:00