summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Set hidden field for guc enum missed in previous commit.Magnus Hagander2008-05-281-7/+7
* Add a field to guc enums to allow hiding of values from display whileMagnus Hagander2008-05-281-72/+89
* Explicitly bind gettext() to the UTF8 locale when in use.Magnus Hagander2008-05-271-1/+20
* Alter the xxx_pattern_ops opclasses to use the regular equality operator ofTom Lane2008-05-275-121/+127
* Fix an old corner-case bug in set_config_option: push_old_value has to beTom Lane2008-05-261-111/+99
* Link in keywords file instead of copying it.Michael Meskes2008-05-211-2/+5
* Simplify code in formatting.c now that to upper/lower/initcase do notBruce Momjian2008-05-201-65/+15
* Remove arbitrary 10MB limit on two-phase state file size. It's not that hardHeikki Linnakangas2008-05-191-3/+15
* Make to_char()'s localized month/day names depend on LC_TIME, not LC_MESSAGES.Tom Lane2008-05-193-258/+224
* Coercion sanity check in ri_HashCompareOp failed to allow for enums, as perTom Lane2008-05-192-9/+13
* Fix a subtle bug exposed by recent wal_sync_method rearrangements.Tom Lane2008-05-171-3/+1
* Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan2008-05-1714-10/+52
* Allow ALTER SEQUENCE START WITH to change the recorded start_value of aTom Lane2008-05-171-44/+36
* Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane2008-05-167-43/+238
* Reduce unnecessary PANIC to ERROR, improve a couple of comments.Tom Lane2008-05-161-15/+11
* Extend GIN to support partial-match searches, and extend tsquery to supportTom Lane2008-05-1613-440/+877
* Persuade GIN to react to control-C in a reasonable amount of timeTom Lane2008-05-161-1/+10
* Add code to eval_const_expressions() to support const-simplification ofTom Lane2008-05-151-1/+66
* Add support for tracking call counts and elapsed runtime for user-definedTom Lane2008-05-1512-45/+598
* Move the "instr_time" typedef and associated macros into a new headerTom Lane2008-05-142-34/+4
* Remove the special variable for open_sync_bit used in O_SYNC and O_DSYNCMagnus Hagander2008-05-141-31/+32
* Don't try to close negative file descriptors, since this can causeMagnus Hagander2008-05-131-3/+6
* This is the patch replace offnum++ by OffsetNumberNext, to beBruce Momjian2008-05-133-7/+7
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-1223-499/+942
* Fix breakage by the wal_sync_method patch in installations that useMagnus Hagander2008-05-121-1/+2
* Put back bufmgr.h in bufpage.h -- it is needed by some macros.Alvaro Herrera2008-05-129-18/+9
* Report which WAL sync method we are trying to change *to* when it fails,Magnus Hagander2008-05-121-2/+2
* Convert wal_sync_method to guc enum.Magnus Hagander2008-05-122-50/+69
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-12104-137/+231
* Change the rules for inherited CHECK constraints to be essentially the sameTom Lane2008-05-0910-450/+859
* Adjust power() error messages to be more descriptive.Bruce Momjian2008-05-092-10/+17
* Add "%option noinput" to the scanners to avoid compiler warnings. GCC 4.3Peter Eisentraut2008-05-093-3/+6
* Update C comments to mention SQL:2003 handling of power return values.Bruce Momjian2008-05-092-5/+8
* Fix Assert introduced in previous patch.Heikki Linnakangas2008-05-091-2/+2
* Fix incorrect archive truncation point calculation in the %r recovery_commandHeikki Linnakangas2008-05-091-6/+30
* Add regression test for various power expressions with a zero base, andBruce Momjian2008-05-081-16/+17
* Have numeric 0 ^ 4.3 return 1, rather than an error, and have 0 ^ 0.0Bruce Momjian2008-05-081-7/+16
* Make the new pg_stat_get_activity use OUT parameters, so you don't have toMagnus Hagander2008-05-081-7/+2
* Make the pg_stat_activity view call a SRF (pg_stat_get_activity())Magnus Hagander2008-05-072-17/+242
* The CONSTROID syscache should show conrelid as a relation OID column.Tom Lane2008-05-071-5/+4
* Add timestamp and timestamptz versions of generate_series().Tom Lane2008-05-041-1/+180
* Add pg_conf_load_time() function to report when the Postgres configurationTom Lane2008-05-043-4/+18
* Use new cstring/text conversion functions in some additional places.Tom Lane2008-05-042-62/+14
* The 8.2 patch that added support for an alias on the target table ofTom Lane2008-05-031-3/+10
* Allow the planner's estimate of the fraction of a cursor's rows that will beTom Lane2008-05-023-6/+32
* Make the AWK default value also take effect if $AWK is an empty string.Peter Eisentraut2008-05-021-2/+4
* Remove the recently added USE_SEGMENTED_FILES option, and indeed remove allTom Lane2008-05-022-83/+10
* Make the minimum allowed value of work_mem be 64KB always, rather than havingTom Lane2008-05-011-2/+2
* Fix nodeTidscan.c to not trigger an error if the block number portion ofTom Lane2008-04-301-3/+15
* Some minor further cleanup around A_Const. Don't attach a typecast inTom Lane2008-04-293-78/+49