summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2005-10-14Pass a strdup'd ident string to openlog(), to ensure that reallocationTom Lane
2005-10-14Allow times of 24:00:00 to match rounding behavior:Bruce Momjian
2005-10-13Make stack_base_ptr non-static, for PL/Java.Bruce Momjian
2005-10-13This makes the error messages for PREPARE TRANSACTION, COMMIT PREPAREDBruce Momjian
2005-10-13Update krb_server_name to document that a missing entry defaults toBruce Momjian
2005-10-13Back out this because of fear of changing error strings:Bruce Momjian
2005-10-13This makes the error messages for PREPARE TRANSACTION, COMMIT PREPAREDBruce Momjian
2005-10-13Use get_progname() in backend main.c, rather than port-specific hackBruce Momjian
2005-10-13Remove an antiquated comment.Neil Conway
2005-10-13Don't try to remove duplicate OR-subclauses in create_bitmap_subplan andTom Lane
2005-10-12Fix longstanding bug found by Atsushi Ogawa: _bt_check_unique would markTom Lane
2005-10-12Fix another recently-changed place that was messing with spinlock-Tom Lane
2005-10-12Do all accesses to shared buffer headers through volatile-qualifiedTom Lane
2005-10-11Fix typo in sample pg_hba.conf; per IRC report from Bernhard Neuhauser.Neil Conway
2005-10-11Add infrastructure for making spins_per_delay variable depending onTom Lane
2005-10-11Document that get_attstatsslot/free_attstatsslot only need to be passedTom Lane
2005-10-11Fix oversight in 8.0 modification of RestrictInfo data structures.Tom Lane
2005-10-10Use a safer order of operations in dropdb(): rollbackable operations,Tom Lane
2005-10-10Translation updatePeter Eisentraut
2005-10-10Fix the problem of GRANTs creating "dangling" privileges not directlyTom Lane
2005-10-09Fix (hopefully for the last time) problems with datetime values displayingTom Lane
2005-10-08Fix up grammar in variable description string.Tom Lane
2005-10-08Fix Kerberos authentication in wake of virtual-hosts changes --- needTom Lane
2005-10-07Fix LWLockAssign() so that it can safely be executed after postmasterTom Lane
2005-10-07Allocate a few extra LWLocks for possible use by add-on modules.Tom Lane
2005-10-07Marginal performance improvement in aclmask(): don't bother withTom Lane
2005-10-07Recognize ERROR_SHARING_VIOLATION (translate to EACCES), increase logTom Lane
2005-10-06Marginal speedup in RelationIsVisible and TypeIsVisible: avoid a redundantTom Lane
2005-10-06Minor API cleanup for async notifications: we can only register theNeil Conway
2005-10-06When a function not returning RECORD has a single OUT parameter, useTom Lane
2005-10-06Fix oversight in indexscan plan creation. I recently added code to useTom Lane
2005-10-06Revise pgstats stuff to fix the problems with not counting accessesTom Lane
2005-10-05Code cleanup for log_disconnections(). Patch from Qingqing Zhou,Neil Conway
2005-10-05Make set_function_size_estimates() marginally smarter: per originalTom Lane
2005-10-04Add _ to gettext triggers. Must have been forgotten here when it was introduced.Peter Eisentraut
2005-10-03COPY's test for read-only transaction was backward; it prohibited COPY TOTom Lane
2005-10-03Add a trace_sort option to help with measuring resource usage of externalTom Lane
2005-10-03Separate out the VacRUsage stuff as an independent module, in preparationTom Lane
2005-10-03Preserve tuple OIDs during ATRewriteTable. Per gripe from Duncan Crombie.Tom Lane
2005-10-03Expand pg_control information so that we can verify that the databaseTom Lane
2005-10-02Change nextval and other sequence functions to specify their sequenceTom Lane
2005-10-01_SPI_execute_plan failed to return result tuple table to caller inTom Lane
2005-09-29Fix confusion between relfilenode and Oid.Alvaro Herrera
2005-09-28Repair planning bug introduced in 7.4: outer-join ON clauses that referencedTom Lane
2005-09-26Log protocol-excute fetch operatation as fetch, rather than execute,Bruce Momjian
2005-09-25The original patch to avoid building a hash join's hashtable when theTom Lane
2005-09-24Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane
2005-09-24Suppress signed-vs-unsigned-char warnings.Tom Lane
2005-09-24In a machine where INT64_IS_BUSTED, we can only support 32-bit valuesTom Lane
2005-09-23Add comments explaining clauses used by CREATE ROLE but not ALTER.Bruce Momjian