summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
1997-10-25Add SQL92 "constants" CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP,Thomas G. Lockhart
1997-10-25Add SQL92 reserved words for primary and foreign keys.Thomas G. Lockhart
1997-10-25Rename strNcpy to StrNCpy, and change third parameter.Bruce Momjian
1997-10-16Ignore copies of columns specified in ORDER/GROUP BYVadim B. Mikheev
1997-10-15Include SQL/92 string continuation across newlines.Thomas G. Lockhart
1997-10-12DEFAULT is handled by analyze.c now.Vadim B. Mikheev
1997-10-09Use P_TYPE rather than TYPE_P (which will be the name in the next release).Thomas G. Lockhart
1997-10-09Allow both TIME and TYPE as column and table names.Thomas G. Lockhart
1997-10-09Allow TIME in column and table names (SQL/92 non-reserved word).Thomas G. Lockhart
1997-09-29MOVE implementation.Vadim B. Mikheev
1997-09-26Fix SUBSTRING(str FROM int TO int) parsing.Thomas G. Lockhart
1997-09-25Tatsuo's patch to fix alignment problems in structure for RISC machines.Thomas G. Lockhart
1997-09-25One more change to recover v6.1.1 escaped-text input behavior.Thomas G. Lockhart
1997-09-24Add SQL/92 "constants" current_date, current_time, and current_timestamp.Thomas G. Lockhart
1997-09-24Add SQL/92 types decimal and numeric.Thomas G. Lockhart
1997-09-24Restore proper behavior for escaped quotes and for escaped literalsThomas G. Lockhart
1997-09-24Allow use functions with no arguments in DEFAULTVadim B. Mikheev
1997-09-20Add support for FLOAT(p) SQL/92 data type.Thomas G. Lockhart
1997-09-18Inline memset() as MemSet().Bruce Momjian
1997-09-18Convert sequence names tolower.Vadim B. Mikheev
1997-09-18Add syntax and warnings for unsupported ALTER TABLE commandsThomas G. Lockhart
1997-09-16Fix string conversions for operators in DEFAULT and CHECK clauses.Thomas G. Lockhart
1997-09-13Remove backdoor strings from scan.l for DEFAULT and CHECK.Thomas G. Lockhart
1997-09-13Add a few keywords for SQL-92 support.Thomas G. Lockhart
1997-09-13Use exclusive state to help fix unary minus parsing.Thomas G. Lockhart
1997-09-13Fix up error messages.Thomas G. Lockhart
1997-09-12Allow SELECT NULL as EMPTY_FIELD, Patrick.Bruce Momjian
1997-09-12Quick hack to get CHECK working for incoming betta.Vadim B. Mikheev
1997-09-12heapattr functions now return a Datum, not char *.Bruce Momjian
1997-09-08Used modified version of indent that understands over 100 typedefs.Bruce Momjian
1997-09-08Add typdefs to pgindent run.Bruce Momjian
1997-09-08Lex/yacc source cleanup like indent.Bruce Momjian
1997-09-08Another PGINDENT run that changes variable indenting and case label indenting...Bruce Momjian
1997-09-07Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian
1997-09-05Cleanups needed for indent.Bruce Momjian
1997-09-05Cleanups needed for indent. Remove };Bruce Momjian
1997-09-05Restore CurScanPosition() for flex.Vadim B. Mikheev
1997-09-05Add // comments.Bruce Momjian
1997-09-04CREATE/DROP TRIGGER syntaxVadim B. Mikheev
1997-09-02Remove comment line in rules section. Keith reports trouble on SolarisThomas G. Lockhart
1997-09-01Add SQL92 string handling features (SUBSTRING, TRIM, EXTRACT).Thomas G. Lockhart
1997-09-01Add detection and warnings for UNION and HAVING clauses.Thomas G. Lockhart
1997-09-01Add more reserved words, mostly for SQL92 compliance.Thomas G. Lockhart
1997-09-01Use exclusive states for parsing quoted strings.Thomas G. Lockhart
1997-08-28Fix for "default = '...'" in CREATE TYPEVadim B. Mikheev
1997-08-22Restore CONSTRAINT keyword (was lost ... by unknown way)Vadim B. Mikheev
1997-08-22We store Cash/money as int of size 4, so make it an int rather than a long.Bruce Momjian
1997-08-22There is no NULL constraint in CREATE TABLE - only NOT NULL one.Vadim B. Mikheev
1997-08-22Allow functions and operators on internally-identical types to succeed.Bruce Momjian
1997-08-21Syntax for [CONSTRAINT name] CHECK ...Vadim B. Mikheev