summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Collapse)Author
1997-12-09Add information message about implicitly created indices.Thomas G. Lockhart
Check for duplicate implicit index names and generate unique names.
1997-12-09Remove trailing period from an elog message.Thomas G. Lockhart
Most other messages do not have one.
1997-12-08More VARHDRSZ additions.Bruce Momjian
1997-12-07Add error check on getenv("DATADIR")Marc G. Fournier
Add code to set DATADIR in postmaster.c if -D is used
1997-12-06Add VARHDRSZ where needed. Many places just used 4.Bruce Momjian
1997-12-05Fix tolower loops to go in proper direction for cache.Bruce Momjian
1997-12-04Add 'GERMAN' style to date/time output.Thomas G. Lockhart
Probably have it wrong (dd.mm/yyyy) but can change it when we know. Input routines always handled it.
1997-12-04Add some printing capability for a few more node types (CreateStmt,Thomas G. Lockhart
IndexStmt, IndexElem, ColumnDef).
1997-12-04Add 'GERMAN' option to DateStyle.Thomas G. Lockhart
1997-12-04Change Constraint structure name from ConstraintDef to Constraint.Thomas G. Lockhart
Change reference to field inside to be compatible with new definition as a "node" structure rather than a specialty structure.
1997-12-04Add SQL92-compliant syntax for constraints.Thomas G. Lockhart
Implement PRIMARY KEY and UNIQUE clauses using indices.
1997-12-04Missed a few files from Todd's patch...oops :)Marc G. Fournier
1997-12-04From: todd brandys <brandys@eng3.hep.uiuc.edu>Marc G. Fournier
An extension to the code to allow for a pg_password authentication database that is *seperate* from the system password file
1997-12-02Fix vacuum analyze syntax problem.Bruce Momjian
1997-12-02Remove premature code in constraint parsing.Thomas G. Lockhart
Change elog WARN to NOTICE for unimplemented constraints.
1997-12-01Document pg_dump -z, clean up option list. Fix problem with libpq handling ↵Bruce Momjian
of field names uppercase code.
1997-11-30Change elog WARN messages for UNIQUE and PRIMARY, FOREIGN KEYThomas G. Lockhart
to NOTICE messages so that execution proceeds rather than halting. These clauses are ignored as stated in the messages. Allow NOT NULL UNIQUE syntax (both were allowed individually before). Allow Postgres-style casting ("::") of non-constants.
1997-11-30Add comments and move a few declaration blocks to help readability.Thomas G. Lockhart
No functional changes this time!
1997-11-28Rename heap_destroyr to heap_destroy, heap_destroy to heap_destroy_with_catalog.Bruce Momjian
1997-11-28Rename heap_create to heap_create_and_catatlog, rename heap_creatr to ↵Bruce Momjian
heap_create().
1997-11-27Salt fix for password, from Tatsuo Ishii.Bruce Momjian
1997-11-27Prevent flushing from packets, by Massimo.Bruce Momjian
1997-11-27Cleaups of comments.Bruce Momjian
1997-11-26Add README for parser directoryBruce Momjian
1997-11-26Re-order args for TypeCreate() to be clearer.Bruce Momjian
1997-11-26Fix from Zeugswetter Andreas DBT for Sendproc.Bruce Momjian
1997-11-26Make parser functions static where possible.Bruce Momjian
1997-11-26Make parser functions static where possible.Bruce Momjian
1997-11-26Cleanup up include files.Bruce Momjian
1997-11-25Break parser functions into smaller files, group together.Bruce Momjian
1997-11-24Remove gram problems with archive.Bruce Momjian
1997-11-24Move dbcommands.c to commands/. It should not be in the parser directory.Bruce Momjian
1997-11-24Move dbcommands.c to commands/. It should not be in the parser directory.Bruce Momjian
1997-11-24Remove tqual.h includes not needed.Bruce Momjian
1997-11-23Fix for textcat on varchar() fields.Bruce Momjian
1997-11-21Archive cleanups.Bruce Momjian
1997-11-21More archive cleanup.Bruce Momjian
1997-11-21Remove unused files.Bruce Momjian
1997-11-21Remove archive stuff.Bruce Momjian
1997-11-21Remove archive stuff.Bruce Momjian
1997-11-20Remove all time travel stuff. Small parser cleanup.Bruce Momjian
1997-11-19Fix socket file permissions, from Goran Thyni.Bruce Momjian
1997-11-19FIx for unix domain sockets, from Goran Thyni.Bruce Momjian
1997-11-19Call ExecEvalExpr with &isDone (not with NULL).Vadim B. Mikheev
1997-11-18Get rid of unused variable 'address'.Vadim B. Mikheev
1997-11-17Remove 16 char limit on system table/index names. Rename system indexes.Bruce Momjian
1997-11-17Define prototype for ExecutorLimit() to avoid compiler complaints.Thomas G. Lockhart
1997-11-17Update UNION and subselect syntax.Thomas G. Lockhart
Support SQL92 syntax for type coersion of strings (type 'typeval'). Example: "DATETIME 'now'". This works only for string constants and can not replace the CAST and ::type syntax which behave identically in this context.
1997-11-17Update generated source for scan.l.Thomas G. Lockhart
1997-11-17Implement SQL92 binary and hexadecimal string decoding (b'10' and x'1F').Thomas G. Lockhart
Check decoding of integer in x - y syntax (already done for most ints).