summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-12-17Makefile cleaned upMarc G. Fournier
async.c: #include <port-protos.h> surrounded by an #ifdef HAVE_STRDUP vacuum.c: #include <port-protos.h> commented out...can someone comment as to why it was included, as it doesn't seem to have any effect under FreeBSD so far...would like some sort of #ifdef wrapper like async.c if possible
1997-12-17Clean up the MakefilesMarc G. Fournier
Essentially, this cleans things up so that if PORTNAME isn't defined (I'm working on getting rid of it for FreeBSD, at least, to see if its possible) none of the PORTNAME related stuff gets passed around. Had a little bit of -I related redundancy as well
1997-12-17Make it entirely possible for PORTNAME to be undefinedMarc G. Fournier
1997-12-17Add recognition for 'machten'Marc G. Fournier
1997-12-16Mention PST8PDT explicitly in the banner message (rather than PST/PDT).Thomas G. Lockhart
1997-12-16Define text, varchar, and bpchar string length functions.Thomas G. Lockhart
1997-12-16Use MAXPGPATH to declare size of socket name storage.Thomas G. Lockhart
1997-12-16Use environment variable PGDATESTYLE on backend startup to initializeThomas G. Lockhart
date/time formats and conventions.
1997-12-16Add declarations for text, bpchar, and varchar length functions.Thomas G. Lockhart
Remove declarations in builtins.h duplicated in dt.h. Change a few return type declarations to use "type *" rather than "struct ...".
1997-12-16Add declarations for text, bpchar, and varchar length functions.Thomas G. Lockhart
1997-12-16Allow multiple-argument functions in constraint clauses.Thomas G. Lockhart
Formerly allowed only single arguments. Declare column constraints using the usual list mechanism rather than explicit itemized lists. Remove NOTNULL from default clause syntax (retain "NOT NULL"). NOTNULL is not SQL92; eventually remove it from expressions too? Move ISNULL, NOTNULL to Postgres-specific token declarations. Fix up tabs and indenting on new CREATE USER commands.
1997-12-16Improve (well, ok, fix) generated constraint name for column CHECK clause.Thomas G. Lockhart
1997-12-16Fix order of keywords, must be alphabetical.Bruce Momjian
1997-12-15Fix for user password packet processing, from Goran Thyni.Bruce Momjian
1997-12-12Make password null on startup.Bruce Momjian
1997-12-11Rename pg_plan and pg_eval to be more meaningful.Bruce Momjian
1997-12-11Remove PGDATA setting and use DataDir.Bruce Momjian
1997-12-09Spark/Linux patch for locking, from Tom SzybistBruce Momjian
1997-12-09Major code cleanup following the pg_password insertion...Marc G. Fournier
...malloc/free -> palloc/pfree ...fopen/fclose -> AllocateFile/FreeFile
1997-12-09Include informational messages added for implicit index creation.Thomas G. Lockhart
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-05Add test for multi-character char().Thomas G. Lockhart
1997-12-05Fix tolower loops to go in proper direction for cache.Bruce Momjian
1997-12-05I found one other change that I would like to make to theMarc G. Fournier
src. It is in the function ParseACL. When I find that I can not allocate enough memory for the ACL structure I return an NULL instead of doing an exit_nicely(g_conn); From: Matthew C Aycock <maycock@scuba.pcpipeline.com>
1997-12-05Change constraint syntax to SQL92 style.Thomas G. Lockhart
Add tests for PRIMARY KEY and UNIQUE clauses.
1997-12-04Define USE_GERMAN_DATES for use in date/time I/O functions.Thomas G. Lockhart
1997-12-04Change Constraint structure to be a full node structure.Thomas G. Lockhart
Add new constraint types PRIMARY, UNIQUE.
1997-12-04Add Constraint node type.Thomas G. Lockhart
Remove TimeRange node type tag (everything else already gone).
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-04Run through toupper() conversion in the forward direction.Thomas G. Lockhart
Most processors should optimize this a bit better wrt cache prefetch.
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-04Update description for PGHOST and unix domain sockets. Add warning for ↵Bruce Momjian
failed connections.
1997-12-04Update description for PGHOST and unix domain sockets. Add warning for ↵Bruce Momjian
failed connections.
1997-12-04Incorporate patch from Matt(maycock@intelliquest.com) for dumping ACLsMarc G. Fournier
Clean up formatting of code Integrate new functions into dumpTable This is not tested yet...have to recompile server due to patches from Todd...but this compiles cleanly as it stands now
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-02the -l option doesn't take a port option, so the man page shouldn't say itMarc G. Fournier
does
1997-12-02gmake distclean wasn't removing the configure generated Makefile inMarc G. Fournier
pg_version... ...fixed
1997-12-02Remove premature code in constraint parsing.Thomas G. Lockhart
Change elog WARN to NOTICE for unimplemented constraints.
1997-12-02Linux related change to .similar to handle 'a.out' files...Marc G. Fournier
From: Herb Richter <hgr@buynet.com>
1997-12-01Fix pg_dump, and libpq changes.Bruce Momjian
1997-12-01Document pg_dump -z, clean up option list. Fix problem with libpq handling ↵Bruce Momjian
of field names uppercase code.