summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2004-01-07More janitorial work: remove the explicit casting of NULL literals to aNeil Conway
2004-01-07Cleanup: move the 'Value' node into a separate file, rather than puttingNeil Conway
2004-01-07Support function parameter names in plpgsql. This is the last ofTom Lane
2004-01-07pg_dump support for function parameter names.Tom Lane
2004-01-06Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane
2004-01-06Final rearrangement of main postgresql child process (ie.Bruce Momjian
2004-01-06Suppress compiler warning (xlog_outrec is unused if not WAL_DEBUG).Tom Lane
2004-01-06Code cleanup, mostly in the smgr:Neil Conway
2004-01-06Remove unused 'noversion' command-line option processing from theNeil Conway
2004-01-06Make the 'wal_debug' GUC variable a boolean (rather than an integer), andNeil Conway
2004-01-06Instead of rechecking lossy index operators by putting them into theTom Lane
2004-01-05Adjust indexscan planning logic to keep RestrictInfo nodes associatedTom Lane
2004-01-05Trivial refactoring: move analysis of ViewStmt into its own function forNeil Conway
2004-01-05Fix three trivial typos in comments.Neil Conway
2004-01-05Translation updatesPeter Eisentraut
2004-01-05Improve UniquePath logic to detect the case where the input is alreadyTom Lane
2004-01-05Dept. of second thoughts: clause_selectivity shouldn't try to cache itsTom Lane
2004-01-05Add the ability to extract OR indexscan conditions from OR-of-ANDTom Lane
2004-01-04Fixed bug in GRANT OPTION FOR parsing.Michael Meskes
2004-01-04There's no longer any good reason for genbki.sh and Gen_fmgrtab.sh toTom Lane
2004-01-04Fix portability bugs: char values passed to <ctype.h> functions mustTom Lane
2004-01-04Fix discrepancy in prototypes for HPUX pg_dlerror.Tom Lane
2004-01-04Fix ReadOffset() to work correctly when off_t is wider than int.Tom Lane
2004-01-04Merge restrictlist_selectivity into clauselist_selectivity byTom Lane
2004-01-04Remove trailing newline from file.Bruce Momjian
2004-01-04Remove trailing semicolons from macro initializations in plpython.Bruce Momjian
2004-01-04Mention grabbing typedefs from pgsql/lib too.Bruce Momjian
2004-01-04Rewrite OR indexscan processing to be more flexible. We can now for theTom Lane
2004-01-03Must test for __hppa__ as well as __hppa to make linux-hppa happy.Tom Lane
2004-01-01Do an explicit fflush after writing a progress message with puts.Tom Lane
2003-12-31Make Solaris non-gcc thread flag "-mt" a compile flag, not a link flag.Bruce Momjian
2003-12-30Adjust the definition of RestrictInfo's left_relids and right_relidsTom Lane
2003-12-30Add "-mt" link flag for Solaris non-gcc compiles when using threads ---Bruce Momjian
2003-12-30Instead of trying to force WHERE clauses into CNF or DNF normal form,Tom Lane
2003-12-30Avoid running out of memory during hash_create, by not passing aTom Lane
2003-12-30ShmemInitHash forgot to specify HASH_ALLOC flag bit in its hash_createTom Lane
2003-12-29Use hash table name, not one-size-fits-all 'DynaHashTable', to identifyTom Lane
2003-12-29Using canonicalize_qual() to get rid of duplicate index predicateTom Lane
2003-12-29Improve comment.Tom Lane
2003-12-29Tweak OpernameGetCandidates() to reduce palloc overhead --- profilingTom Lane
2003-12-29Added missing whitespaces to array argument parsing.Michael Meskes
2003-12-28Clean up the usage of canonicalize_qual(): in particular, be consistentTom Lane
2003-12-28Fix sanity-check code that mistakenly assumed error and notice messagesTom Lane
2003-12-28Avoid infinite loop if connection is lost during PQexecStart() orTom Lane
2003-12-27Improve spinlock code for recent x86 processors: insert a PAUSETom Lane
2003-12-25Continued rearrangement to permit pgstat + BootstrapMain processes to beBruce Momjian
2003-12-25Patch that makes quoting "sameuser", "samegroup", and "all" removeBruce Momjian
2003-12-25> > I have no idea if this in Oracle or not. But it's something IBruce Momjian
2003-12-24Fixed segfault in parsing of EXEC SQL SELECT * FROM foo() AS TBL( c int, i int);Michael Meskes
2003-12-23Supress non-temp schemas from psql \dn display.Bruce Momjian