summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2009-11-01Dept of second thoughts: after studying index_getnext() a bit more I realizeTom Lane
2009-11-01Fix two serious bugs introduced into hash indexes by the 8.4 patch that madeTom Lane
2009-10-31Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane
2009-10-30Make the overflow guards in ExecChooseHashTableSize be more protective.Tom Lane
2009-10-28Un-break EXPLAIN for Append plans. I messed this up a few days ago whileTom Lane
2009-10-28Fix AcquireRewriteLocks to be sure that it acquires the right lock strengthTom Lane
2009-10-28When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane
2009-10-27Fix AfterTriggerSaveEvent to use a test and elog, not just Assert, to checkTom Lane
2009-10-27Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane
2009-10-26Simplify a few makefile rules since install-sh can now install multiplePeter Eisentraut
2009-10-26Fix range check in date_recv that tried to limit accepted values to onlyHeikki Linnakangas
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-23When querying a table with child tables, do not check permissions on thePeter Eisentraut
2009-10-21Remove regex_flavor GUC, so that regular expressions are always "advanced"Tom Lane
2009-10-21Remove add_missing_from GUC and associated parser support for "implicit RTEs".Tom Lane
2009-10-20Translations update for 8.5alpha2Peter Eisentraut
2009-10-17Fix typo in previous release as reported by Itagaki Takahiro, but missedMagnus Hagander
2009-10-17Write to the Windows eventlog in UTF16, converting the message encodingMagnus Hagander
2009-10-16Rewrite pam_passwd_conv_proc to be more robust: avoid assuming that theTom Lane
2009-10-14Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane
2009-10-14Rename the new MAX_AUTH_TOKEN_LENGTH #define to PG_MAX_AUTH_MAX_TOKEN_LENGTH,Heikki Linnakangas
2009-10-14Raise the maximum authentication token (Kerberos ticket) size in GSSAPIHeikki Linnakangas
2009-10-13Fix ts_stat's failure on empty tsvector.Tom Lane
2009-10-13Add new PGC_S_DATABASE_USER enum value to several places missed by my patchAlvaro Herrera
2009-10-13Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane
2009-10-12Use plurals (TABLES, FUNCTIONS, etc) in ALTER DEFAULT PRIVILEGES. We haveTom Lane
2009-10-12Support GRANT/REVOKE ON ALL TABLES/SEQUENCES/FUNCTIONS IN SCHEMA.Tom Lane
2009-10-12CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan
2009-10-12Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane
2009-10-10Improve similar_escape() in two different ways:Tom Lane
2009-10-10Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane
2009-10-09Use pg_get_triggerdef in pg_dumpPeter Eisentraut
2009-10-08Remove very ancient tuple-counting infrastructure (IncrRetrieved() andTom Lane
2009-10-08Fix off-by-one bug in bitncmp(): When comparing a number of bits divisible byHeikki Linnakangas
2009-10-08Support use of function argument names to identify which actual argumentsTom Lane
2009-10-07Make it possibly to specify GUC params per user and per database.Alvaro Herrera
2009-10-07Fix snapshot management, take two.Alvaro Herrera
2009-10-06Change CREATE TABLE so that column default expressions coming from differentTom Lane
2009-10-05Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane
2009-10-03Fix assorted memory leaks in pg_hba.conf parsing. Over a sufficientlyTom Lane
2009-10-03Fix a couple of issues in recent patch to print updates to postgresql.confTom Lane
2009-10-02Fix an oversight in an 8.3-era patch: pgstat_initstats should allow statsTom Lane
2009-10-02Make sure that GIN fast-insert and regular code paths enforce the sameTom Lane
2009-10-02Fix erroneous handling of shared dependencies (ie dependencies on roles)Tom Lane
2009-10-02Ensure that a cursor has an immutable snapshot throughout its lifespan.Alvaro Herrera
2009-10-01Support "samehost" and "samenet" specifications in pg_hba.conf,Tom Lane
2009-09-29Fix equivclass.c's not-quite-right strategy for handling X=X clauses.Tom Lane
2009-09-27Remove no-longer-needed ExecCountSlots infrastructure.Tom Lane
2009-09-27Replace the array-style TupleTable data structure with a simple List ofTom Lane
2009-09-27Sync psql's scanner with recent changes in backend scanner's flex rules.Tom Lane