summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-10-25Remove 294 reduce/reduce conflicts.Tom Lane
2001-10-25Fix a couple of places where lack of parenthesization of a castTom Lane
causes pgindent to make weird formatting decisions. Easiest fix seems to be to put in the extra parens...
2001-10-25Add blank line before #endif to #endif's at the end of the file.Bruce Momjian
2001-10-25Add slash for comment spacing, for Tom.Bruce Momjian
2001-10-25Add comment spaces for trailing ) and comment.Bruce Momjian
2001-10-25Add spacing for single-line comments with trailing semicolon _and_Bruce Momjian
comma, per Tom.
2001-10-25Add int2-to-int8 and int8-to-int2 conversion routines. Needed to avoidTom Lane
breaking existing pg_dump scripts, which try to assign the result of count(*) to an int2 variable. catversion bumped.
2001-10-25Add missing output routine for FkConstraint nodes.Tom Lane
2001-10-25Code cleanup.REL7_2_BETA1Bruce Momjian
2001-10-25pgjindent jdbc files. First time jdbc files were formatted.Bruce Momjian
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
tests pass.
2001-10-25Update to prevent CATALOG() from wrapping.Bruce Momjian
2001-10-25Add current typedef symbols to pgindent.Bruce Momjian
2001-10-25Add do { ... } while (0) to more bad macros.Bruce Momjian
2001-10-25Add missing "do { ... } while(0)" in ODBC macros and add find_baddefsBruce Momjian
script.
2001-10-24Include locale.h before undefining gettext() to avoid compilation errorsPeter Eisentraut
on Solaris. per report from Lee Kindness, 2001-10-23
2001-10-24All three *.po patches applied.Bruce Momjian
forth@pagic.net
2001-10-24Here is a patch for DatabaseMetaData to show precision properly. It isBruce Momjian
from Mark Lillywhite. I am adding to the patch queue.
2001-10-24Allow concurrent index creation for the same table.Hiroshi Inoue
2001-10-24fix for a bug in DatabaseMetaData.getIndexInfo(). This fixes a bug reported ↵Barry Lind
by tom_falconer@lineone.net. On Sept 7th, he sent a test case to the list demonstrating the bug. His test case now works successfully with this patch
2001-10-23Forbid the switch combination --clean --create, which is pointlessTom Lane
(why bother dropping individual objects in a just-created database?) as well as dangerous (as the code stands, the drops will be issued in the wrong database, namely the one you were originally connected to).
2001-10-23Document range restriction on bit values used in INTERVAL typmod.Tom Lane
2001-10-23Add support for INTERVAL's new typmod values to format_type.Tom Lane
2001-10-23Fix foreign keys on system columns.Tom Lane
2001-10-23Make SPI's column-accessing functions work for system columns as well asTom Lane
user columns. Needed for foreign keys on OID, but useful in general.
2001-10-23Now I had them reversed. Wow that syntax is error-prone.Bruce Momjian
2001-10-23Syntax fix. Can't use #ifdef in gram.y.Bruce Momjian
2001-10-23Back out LIMIT #,# removal and mark it as to-be-removed in 7.3.Bruce Momjian
2001-10-23Add error checking to PageRepairFragmentation to ensure that it canTom Lane
never overwrite adjacent pages with copied data, even if page header and/or item pointers are already corrupt. Change inspired by trouble report from Alvaro Herrera.
2001-10-22Cause transformIndexConstraints() to do the right thing with requestsTom Lane
for indexes on system columns. Per complaint from Peter.
2001-10-22Consolidate tables of known system attributes into one table.Tom Lane
2001-10-22Update for latest fixes.Tom Lane
2001-10-22Further cleanup of ps_status setup code. On platforms where theTom Lane
environment strings need to be moved around, do so when called from initial startup (main.c), not in init_ps_status. This eliminates the former risk of invalidating saved environment-string pointers, since no code has yet had a chance to grab any such pointers when main.c is running.
2001-10-22Add defenses against invalid operator names passed in CREATE OPERATORTom Lane
arguments (where the parser doesn't check them already). Minor code cleanups too.
2001-10-22Rebuild cached function definition after CREATE OR REPLACE FUNCTION.Tom Lane
Fix typlen-vs-typmod errors inherited from pltcl.
2001-10-22Generate correct syntax for DROP OPERATOR with unary operators.Tom Lane
2001-10-22synced preproc.y with gram.yMichael Meskes
2001-10-21Fix FindExec() for case where executable is found via a relative pathTom Lane
in .:/home/postgres/testversion/bin:/opt/perl5.6.1/bin:/home/postgres/bin:/usr/local/bin:/usr/bin:/opt/ansic/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/nettladm/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/upgrade/bin:/opt/CC/bin:/opt/langtools/bin:/opt/graphics/phigs/bin:/opt/java/bin:/bin:/opt/imake/bin:/opt/hparray/bin:/opt/aCC/bin:/opt/lrom/bin:/usr/local/nmh/bin:. (I suppose the only common case for this is '.').
2001-10-21Fix getopt-vs-init_ps_display problem by copying original argv[] info,Tom Lane
per suggestion from Peter. Simplify several APIs by transmitting the original argv location directly from main.c to ps_status.c, instead of passing it down through several levels of subroutines.
2001-10-20Revert change to autodetect '__getopt_initialized' variable ... turnsTom Lane
out glibc doesn't actually export this variable, so we need a different solution.
2001-10-20Change LIMIT #,# error message to be more generic.Bruce Momjian
2001-10-20Remove LIMIT #,# and suggest LIMIT # OFFSET #, per mailing list discussion.Bruce Momjian
2001-10-20Fix transposed arguments for typmod for one INTERVAL production.Thomas G. Lockhart
Mask both typmod subfields for INTERVAL to avoid setting the high bit, per dire warning from Tom Lane. Clear tmask for DTK_ISO_TIME case to avoid time zone troubles. Symptom reported by Tom Lane. Clean up checking for valid time zone info in output routine. This should now work for both SQL99 and Unix-style time zones. Put in explicit check for INTERVAL() typmod rounding to avoid accumulating cruft in the lower bits. Not sure that this helps, but we'll need to do something. The symptom is visible with a query like select interval(2) '10000 days 01:02:03.040506'; Regression tests are patched to repair the Tom Lane symptom, and all pass.
2001-10-19Fix plperl to discard cached function definition after CREATE ORTom Lane
REPLACE FUNCTION. Clean up typlen/typmod errors inherited from pltcl.
2001-10-19Proper fix for glibc getopt() botch. Surprising we did not see thisTom Lane
before.
2001-10-19Fix a lot of confusion between typlen and typmod. Didn't hurt too muchTom Lane
back when only varlena types paid any attention to typmod ...
2001-10-19Set optreset on platforms that have it before launching postmasterTom Lane
subprocesses; perhaps this will fix portability problem just noted by Lockhart. Also, move test for bad permissions of DataDir to a more logical place.
2001-10-19Ensure that all startup paths (postmaster, standalone postgres, orTom Lane
bootstrap) check for a valid PG_VERSION file before looking at anything else in the data directory. This fixes confusing error report when trying to start current sources in a pre-7.1 data directory. Per trouble report from Rich Shepard 10/18/01.
2001-10-19Rename macro arg to avoid useless compiler warning when building plperl.Tom Lane
2001-10-19> This stops the interface from leaking the row tuples (and thus theBruce Momjian
> results of every fetch). Stephen Robert Norris