summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2002-11-12Improve comment: add note that grotty special case in mdread() isTom Lane
2002-11-12Fix broken GB18030 <--> UTF-8 conversion mapTatsuo Ishii
2002-11-12Remove NO_MKTIME_BEFORE_1970. I had speculated that it was not neededTom Lane
2002-11-11Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane
2002-11-11Add cast to suppress compile warning on Alphas.Tom Lane
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-11-10Add palloc0 function to inline MemSet for newNode call.Bruce Momjian
2002-11-10> > I'll re-check that with the ppc architecture guy here.Bruce Momjian
2002-11-10Tweak CREATE SEQUENCE grammar to be more SQL1999 standards compliant.Bruce Momjian
2002-11-09Add code to handle [ON COMMIT { PRESERVE ROWS | DELETE ROWS | DROP }]Bruce Momjian
2002-11-08This patch removes a bunch of superfluous #include directives: ifBruce Momjian
2002-11-08Replace imprecise value of PI with a better one, and tweak circle_polyTom Lane
2002-11-08Add extra_float_digits GUC parameter to allow adjustment of displayedTom Lane
2002-11-08The "Allow easy display of usernames in a group (pg_hba.conf uses groupsBruce Momjian
2002-11-07Remove inappropriate inclusions of OpenSSL internal header e_os.h,Tom Lane
2002-11-06Phase 2 of hashed-aggregation project. nodeAgg.c now knows how to doTom Lane
2002-11-06First phase of implementing hash-based grouping/aggregation. An AGG planTom Lane
2002-11-04Remove unnecessary inclusion, per Andreas.Tom Lane
2002-11-04Remove no-longer-needed inclusion of bootstrap_tokens.h, per patchTom Lane
2002-11-02Code review for recent patch to allow ALTER TABLE ADD COLUMN whenTom Lane
2002-11-02During swap_relfilenodes, swap relation size statistic fields along withTom Lane
2002-11-02Remove encoding lookups from grammar stage, push them back to placesTom Lane
2002-11-02Clean up a few fprintf(stderr)'s that should be elog's.Tom Lane
2002-11-02Fix permissions-checking bugs and namespace-search-path bugs inTom Lane
2002-11-01Arrange to compile flex output files as inclusions into other filesTom Lane
2002-11-01Reduce a couple of debugging messages from LOG to DEBUG1 category.Tom Lane
2002-11-01Reduce messages associated with shell-type function arguments/resultsTom Lane
2002-11-01After elog(PANIC), exit with abort() not proc_exit(). This allows aTom Lane
2002-11-01Fix some bogus comments.Tom Lane
2002-10-31Add missing #include <errno.h>, per gripe from Alessio Bragadini.Tom Lane
2002-10-31Got tired of explaining why this Assert is not wrong.Tom Lane
2002-10-31Code review for statement_timeout patch. Fix some race conditionsTom Lane
2002-10-31Fix miscalculation of remaining free space during tuple chain moving.Tom Lane
2002-10-31Avoid use of inline functions that are not declared static. Needed toTom Lane
2002-10-31Clean up gram.y trailing spaces.Bruce Momjian
2002-10-26Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls.Tom Lane
2002-10-24Fix some places that were unportably assuming struct timeval's tv_secTom Lane
2002-10-24Function-call-style type coercions should be treated as explicitTom Lane
2002-10-22Perform transaction cleanup operations in a less ad-hoc, moreTom Lane
2002-10-21Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane
2002-10-21Fix ALTER TABLE ... ADD COLUMN for inheritance cases.Bruce Momjian
2002-10-21Remove unnecessary (and inadequate) check of IsTransactionBlock() inTom Lane
2002-10-21Avoid using IsTransactionBlock() in DeferredTriggerSetState(); no realTom Lane
2002-10-21Make CREATE/ALTER/DROP USER/GROUP transaction-safe, or at least prettyTom Lane
2002-10-20Fix potential problem with btbulkdelete deleting an indexscan's currentTom Lane
2002-10-20Rule rewriter was doing the wrong thing with conditional INSTEAD rulesTom Lane
2002-10-20Disallow aggregate functions in rule WHERE clauses. Per gripe fromTom Lane
2002-10-19Fix case where a function in FROM returns a scalar type, but isTom Lane
2002-10-19Invert logic in pg_exec_query_string() so that we set a snapshot forTom Lane