summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1996-11-18Ignore compiler warnings, because we can't escape "abstract declarator usedBryan Henderson
as declaration".
1996-11-17Renamed file. Restored SLSUFF to .so.Bruce Momjian
1996-11-17Copy needed include files into standard directory.Bruce Momjian
1996-11-17Change SLSUFF from .so to .o as default.Bruce Momjian
1996-11-17New backend directory description file.Bruce Momjian
1996-11-17Fix for -da option of pg_dump.Bruce Momjian
1996-11-17Fix for return code of psql in manual.Bruce Momjian
1996-11-17Fix for error when viewing group access privs.Bruce Momjian
1996-11-17Fix for Alter TABLE add column varchar(). Was causing zero length.Bruce Momjian
1996-11-17Fix syntax errors so it runs without error messages.Bryan Henderson
1996-11-16Remove old GetPGData reference that causes warning.Bryan Henderson
1996-11-16Add #include <sys/types.h> so it works with Ultrix's in.hBryan Henderson
1996-11-16Added documentation on new unique index capability.Bruce Momjian
1996-11-16Added include file needed by memset().Bruce Momjian
1996-11-16Add prototype for new datetime functions.Bruce Momjian
1996-11-15Remove quote removal. Moved to parser.Bruce Momjian
1996-11-15Correct permissions on lo_export(). Open up permissions.Bruce Momjian
1996-11-15Fix quote/doublequote handling.Bruce Momjian
1996-11-15Remove PERFECT_MEMBruce Momjian
Unallocate opaque.
1996-11-15Unallocate opaque.Bruce Momjian
1996-11-15Changed " to '. Removed bug section from psql. added reminder for log callBruce Momjian
in built-in. fixed backslases in source for libpq.
1996-11-15Mulitple inclusion of sys/socket.hMarc G. Fournier
Pointed out by: Erik Bertelsen <erik@sockdev.uni-c.dk>
1996-11-14Features added:Marc G. Fournier
* Wrote max(date) and min(date) aggregates * Wrote operator "-" for date; date - date yields number of days difference * Wrote operator+(date,int) and operator-(date,int); the int is the number of days. Each operator returns a new date. By: Tom Tromey <tromey@creche.cygnus.com>
1996-11-14Bring in Randy's NOROOT patchMarc G. Fournier
1996-11-14Fix a comment...was going to fix the <sys/types.h> problem, butMarc G. Fournier
Randy is submitting a more comprehensive patch :)
1996-11-14Couple of Ultrix4 related patches submited by:Marc G. Fournier
Erik Bertelsen <erik@sockdev.uni-c.dk>
1996-11-14Fix a comment that wasn't commente'd outMarc G. Fournier
Pointed out by: Erik Bertelsen <erik@sockdev.uni-c.dk>
1996-11-14Remove comments psql was putting in output, typo's.Bruce Momjian
psql now returns error from queries and errors files, so ignore return code.
1996-11-14Overhaul MainLoop input processing for quotes, comments, backslashes.Bruce Momjian
1996-11-14Remove most compile-time options, add a few runtime options to make up for it.Bryan Henderson
In particular, no more compiled-in default for PGDATA or LIBDIR. Commands that need them need either invocation options or environment variables. PGPORT default is hardcoded as 5432, but overrideable with options or environment variables.
1996-11-14moved man pages here, as requested by BryanMarc G. Fournier
1996-11-14Missed this part when I eliminated $(srcdir); src/bin stuff won't compile.Bryan Henderson
1996-11-14Use port-protos.h instead of trying to declare random() and srandom()Bryan Henderson
explicitly.
1996-11-14Use -Wno-error option only if compiler is gcc.Bryan Henderson
1996-11-14Use -W options only if compiler is gcc.Bryan Henderson
1996-11-14Include stdlib.h to gives its NULL, etc. definitions precedence over ours.Bryan Henderson
1996-11-14Added percentage to CASSERT comment.Bruce Momjian
1996-11-13Commit of a *MAJOR* patch from Dan McGuirk <djm@indirect.com>Marc G. Fournier
Changes: * Unique index capability works using the syntax 'create unique index'. * Duplicate OID's in the system tables are removed. I put little scripts called 'duplicate_oids' and 'find_oid' in include/catalog that help to find and remove duplicate OID's. I also moved 'unused_oids' from backend/catalog to include/catalog, since it has to be in the same directory as the include files in order to work. * The backend tries converting the name of a function or aggregate to all lowercase if the original name given doesn't work (mostly for compatibility with ODBC). * You can 'SELECT NULL' to your heart's content. * I put my _bt_updateitem fix in instead, which uses _bt_insertonpg so that even if the new key is so big that the page has to be split, everything still works. * All literal references to system catalog OID's have been replaced with references to define'd constants from the catalog header files. * I added a couple of node copy functions. I think this was a preliminary attempt to get rules to work.
1996-11-13Fix syntax error introduced in last update.Bryan Henderson
1996-11-13Eliminate MKDIR, srcdir, objdir. Centralize setting of LIBPQDIR.Bryan Henderson
1996-11-13Make shared library builds work for BSD44_derived.Bryan Henderson
1996-11-13Forgot in yesterday's make file blitz.Bryan Henderson
1996-11-12End of the make file simplifications.Bryan Henderson
1996-11-12Put shared libraries in main directory, not obj/Bryan Henderson
1996-11-12Fix for finding the include filesMarc G. Fournier
1996-11-12Quiet compiler warnings.Bryan Henderson
1996-11-12Use new utils/version.c instead of backend/utils/init/magic.c.Bryan Henderson
1996-11-12Add dependency for install.Bryan Henderson
1996-11-12Add install dependency.Bryan Henderson
1996-11-12Fix bug where it tries to do a cleardbdir when you make install.Bryan Henderson