| Commit message (Expand) | Author | Age | Files | Lines |
* | Rewrite pg_freespacemap to match the new FSM implementation. I missed these | Heikki Linnakangas | 2008-09-30 | 4 | -369/+25 |
* | Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, the | Heikki Linnakangas | 2008-09-30 | 5 | -40/+102 |
* | Fix dblink_connect() so that it verifies that a password is supplied in the | Tom Lane | 2008-09-22 | 1 | -2/+47 |
* | Add a duration option to pgbench, so that test length can be specified in sec... | Tom Lane | 2008-09-11 | 1 | -9/+109 |
* | Add some additional casts and regression tests for the citext data type. | Tom Lane | 2008-09-05 | 5 | -91/+3981 |
* | Prevent memory leaks in our various bison parsers when an error occurs | Tom Lane | 2008-09-02 | 2 | -1/+23 |
* | Add a bunch of new error location reports to parse-analysis error messages. | Tom Lane | 2008-09-01 | 5 | -0/+216 |
* | Remove all traces that suggest that a non-Bison yacc might be supported, and | Peter Eisentraut | 2008-08-29 | 4 | -26/+12 |
* | Add %option noinput to contrib's flex scanners, to suppress gcc 4.3 | Tom Lane | 2008-08-25 | 2 | -1/+3 |
* | Minor patch on pgbench | Bruce Momjian | 2008-08-22 | 1 | -4/+6 |
* | pg_buffercache needs to be taught about relation forks, as Greg Stark | Heikki Linnakangas | 2008-08-14 | 2 | -10/+17 |
* | Allow I/O conversion casts to be applied to or from any type that is a member | Tom Lane | 2008-07-30 | 2 | -13/+16 |
* | Adjust citext to make use of the new ability to declare its type category: | Tom Lane | 2008-07-30 | 2 | -39/+6 |
* | Add a new, improved version of citext as a contrib module. | Tom Lane | 2008-07-29 | 8 | -1/+2291 |
* | Add caching of query to GIN/GiST consistent function. | Teodor Sigaev | 2008-07-11 | 2 | -6/+48 |
* | Fix WAL file cutoff point calculation in pg_standby. | Heikki Linnakangas | 2008-07-08 | 1 | -2/+2 |
* | When an ERROR happens on a dblink remote connection, take | Joe Conway | 2008-07-03 | 2 | -94/+95 |
* | ltree support for multibyte encodings. Patch was made by | Teodor Sigaev | 2008-06-30 | 5 | -87/+136 |
* | Improve our #include situation by moving pointer types away from the | Alvaro Herrera | 2008-06-19 | 5 | -7/+10 |
* | Improve error reporting for problems in text search configuration files | Tom Lane | 2008-06-18 | 1 | -6/+5 |
* | Fix some bugs introduced by the 8.2-era conversion of cube functions to V1 | Tom Lane | 2008-05-29 | 1 | -119/+84 |
* | Add $PostgreSQL$ markers to a lot of files that were missing them. | Andrew Dunstan | 2008-05-17 | 51 | -5/+158 |
* | Suppress compiler warning induced by recent header file refactoring. | Tom Lane | 2008-05-16 | 1 | -1/+2 |
* | Update contrib for tsearch changes. | Tom Lane | 2008-05-16 | 3 | -11/+11 |
* | Restructure some header files a bit, in particular heapam.h, by removing some | Alvaro Herrera | 2008-05-12 | 28 | -62/+111 |
* | Give a warning if -s switch is used with a non-custom pgbench test. | Tom Lane | 2008-05-09 | 1 | -32/+21 |
* | Fix incorrect archive truncation point calculation in the %r recovery_command | Heikki Linnakangas | 2008-05-09 | 1 | -1/+14 |
* | Fix contrib/xml2 makefile to not override CFLAGS, and in passing make it | Tom Lane | 2008-05-08 | 3 | -11/+5 |
* | Use new cstring/text conversion functions in some additional places. | Tom Lane | 2008-05-04 | 3 | -37/+10 |
* | Make earthdistance use version-0 calling convention if not USE_FLOAT8_BYVAL, | Tom Lane | 2008-04-21 | 1 | -14/+56 |
* | Allow float8, int8, and related datatypes to be passed by value on machines | Tom Lane | 2008-04-21 | 4 | -62/+122 |
* | Convert earthdistance's only C function to v1 call convention, | Tom Lane | 2008-04-20 | 1 | -12/+15 |
* | seg_size() has to be V1 calling convention, too. | Tom Lane | 2008-04-19 | 1 | -9/+6 |
* | Change the float4-returning functions in contrib/seg to fmgr v1 calling | Alvaro Herrera | 2008-04-18 | 1 | -23/+34 |
* | Fix typo. | Tom Lane | 2008-04-18 | 1 | -2/+2 |
* | Modify the float4 datatype to be pass-by-val. Along the way, remove the last | Alvaro Herrera | 2008-04-18 | 9 | -35/+335 |
* | Push index operator lossiness determination down to GIST/GIN opclass | Tom Lane | 2008-04-14 | 43 | -209/+389 |
* | Fix several datatype input functions that were allowing unused bytes in their | Tom Lane | 2008-04-11 | 1 | -9/+6 |
* | Improve hash_any() to use word-wide fetches when hashing suitably aligned | Tom Lane | 2008-04-06 | 2 | -6/+22 |
* | Make dblink_current_query() reference pg_catalog.current_query(), per Tom. | Bruce Momjian | 2008-04-05 | 1 | -2/+2 |
* | Re-add dblink_current_query() for backward compatibility. | Bruce Momjian | 2008-04-05 | 2 | -2/+9 |
* | Remove unneed #include now that current_query() has moved to the backend. | Bruce Momjian | 2008-04-04 | 1 | -2/+1 |
* | Implement current_query(), that shows the currently executing query. | Bruce Momjian | 2008-04-04 | 6 | -39/+4 |
* | Add a variant of the Levenshtein string-distance function that lets the user | Tom Lane | 2008-04-03 | 4 | -296/+226 |
* | Move the HTSU_Result enum definition into snapshot.h, to avoid including | Alvaro Herrera | 2008-03-26 | 3 | -5/+8 |
* | Fix core dump in contrib/xml2's xpath_table() when the input query returns | Tom Lane | 2008-03-26 | 1 | -7/+10 |
* | Simplify and standardize conversions between TEXT datums and ordinary C | Tom Lane | 2008-03-25 | 21 | -391/+223 |
* | Adjust pgstatindex() to give correct answers for indexes larger than | Tom Lane | 2008-03-21 | 2 | -68/+59 |
* | Add -M (query mode) option per ITAGAKI Takahiro | Tatsuo Ishii | 2008-03-19 | 1 | -63/+238 |
* | Fix tps calculation when -C supplied. Per Yoshiyuki Asaba. | Tatsuo Ishii | 2008-03-19 | 1 | -31/+80 |