| Commit message (Expand) | Author | Age | Files | Lines |
| * | Support assignment to subfields of composite columns in UPDATE and INSERT. | Tom Lane | 2004-06-09 | 1 | -79/+157 |
| * | Add missing check for too-few-inputs when replacing a zero-dimensional | Tom Lane | 2004-06-08 | 1 | -1/+7 |
| * | Dept of second thoughts: don't use the new wide-character upper/lower | Tom Lane | 2004-06-06 | 1 | -93/+99 |
| * | Add binary I/O support for composite types. | Tom Lane | 2004-06-06 | 1 | -28/+291 |
| * | Preliminary support for composite type I/O; just text for now, | Tom Lane | 2004-06-06 | 1 | -11/+357 |
| * | Infrastructure for I/O of composite types: arrange for the I/O routines | Tom Lane | 2004-06-06 | 3 | -42/+36 |
| * | Tweak palloc/repalloc to allow zero bytes to be requested, as per recent | Tom Lane | 2004-06-05 | 1 | -4/+2 |
| * | Add range-checking in timestamp_recv and timestamptz_recv, per | Tom Lane | 2004-06-03 | 1 | -17/+42 |
| * | Adjust our timezone library to use pg_time_t (typedef'd as int64) in | Tom Lane | 2004-06-03 | 4 | -190/+191 |
| * | Per previous discussions, here are two functions to send INT and TERM | Bruce Momjian | 2004-06-02 | 1 | -1/+47 |
| * | Align GRANT/REVOKE behavior more closely with the SQL spec, per discussion | Tom Lane | 2004-06-01 | 1 | -87/+324 |
| * | Suppress compile warnings on machines where the INT64CONST() decoration | Tom Lane | 2004-05-31 | 2 | -5/+5 |
| * | I think I've finally identified the cause of the off-by-one-second | Tom Lane | 2004-05-31 | 1 | -13/+17 |
| * | Use the new List API function names throughout the backend, and disable the | Neil Conway | 2004-05-30 | 8 | -53/+53 |
| * | On WIN32, don't choke when setlocale(LC_MESSAGES, "") returns NULL. | Tom Lane | 2004-05-27 | 1 | -2/+13 |
| * | A couple other cosmetic cleanups in new List stuff. | Tom Lane | 2004-05-26 | 1 | -7/+4 |
| * | *) inet_(client|server)_(addr|port)() and necessary documentation for | Bruce Momjian | 2004-05-26 | 2 | -2/+130 |
| * | Add <limits.h>, per Magnus. | Tom Lane | 2004-05-26 | 1 | -2/+3 |
| * | The added aggregates are: | Bruce Momjian | 2004-05-26 | 1 | -1/+21 |
| * | Reimplement the linked list data structure used throughout the backend. | Neil Conway | 2004-05-26 | 7 | -110/+119 |
| * | Use wide-character library routines, if available, for upper/lower/initcap | Tom Lane | 2004-05-22 | 1 | -1/+189 |
| * | Put back #include <sys/time.h> in files that seem to need it on Linux. | Tom Lane | 2004-05-21 | 1 | -1/+2 |
| * | Integrate src/timezone library for all platforms. There is more we can | Tom Lane | 2004-05-21 | 6 | -221/+121 |
| * | Minor correction for previous SQLSTATE patch: I changed dsqrt() to emit the | Neil Conway | 2004-05-19 | 1 | -2/+6 |
| * | Change ln(), log(), power(), and sqrt() to emit the correct SQLSTATE | Neil Conway | 2004-05-16 | 2 | -12/+53 |
| * | Implement the width_bucket() function, per SQL2003. This commit only adds | Neil Conway | 2004-05-14 | 1 | -8/+141 |
| * | Tighten up overflow check in path_recv, pursuant to code review inspired | Tom Lane | 2004-05-12 | 1 | -2/+2 |
| * | Promote row expressions to full-fledged citizens of the expression syntax, | Tom Lane | 2004-05-10 | 1 | -5/+33 |
| * | NATURAL CROSS JOIN is a contradiction in terms, not to mention disallowed | Tom Lane | 2004-05-07 | 1 | -9/+4 |
| * | Solve the 'Turkish problem' with undesirable locale behavior for case | Tom Lane | 2004-05-07 | 13 | -276/+152 |
| * | Don't assume that struct timeval's tv_sec field is the same datatype as | Tom Lane | 2004-05-05 | 1 | -4/+6 |
| * | ALTER TABLE rewrite. New cool stuff: | Tom Lane | 2004-05-05 | 1 | -112/+100 |
| * | Revert patch --- needs more generalized solution. | Bruce Momjian | 2004-05-02 | 1 | -38/+1 |
| * | Please find a attached a small patch that adds accessor functions | Bruce Momjian | 2004-04-26 | 1 | -1/+38 |
| * | Please find a small patch to fix the brain damage "century" and | Bruce Momjian | 2004-04-10 | 1 | -3/+15 |
| * | Fix some portability issues with new float input code (didn't work on | Tom Lane | 2004-04-01 | 1 | -19/+19 |
| * | Add missing casts to unsigned char in recently-added isspace() calls. | Tom Lane | 2004-04-01 | 3 | -9/+9 |
| * | Replace TupleTableSlot convention for whole-row variables and function | Tom Lane | 2004-04-01 | 5 | -282/+90 |
| * | Fix to_char for 1 BC. Previously it returned 1 AD. | Bruce Momjian | 2004-03-30 | 3 | -11/+15 |
| * | Standardize output buffer size and display format for strftime; | Tom Lane | 2004-03-22 | 1 | -3/+3 |
| * | Add timestamp-versus-timestamptz cross-type comparison functions, | Tom Lane | 2004-03-22 | 1 | -2/+183 |
| * | Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... END | Tom Lane | 2004-03-17 | 1 | -4/+19 |
| * | Localize our dependencies on the way to create NAN or INFINITY. | Tom Lane | 2004-03-15 | 3 | -37/+85 |
| * | Portability fixes and bug fixes for recent floating point input changes. | Neil Conway | 2004-03-14 | 1 | -66/+157 |
| * | Allow 'Infinity' and '-Infinity' as input to the float4 and float8 | Neil Conway | 2004-03-12 | 1 | -32/+16 |
| * | Revise int2/int4/int8/float4/float8 input routines to allow for | Neil Conway | 2004-03-11 | 4 | -76/+115 |
| * | Per a brief conversation with Tom, I've created a patch for adding | Bruce Momjian | 2004-03-05 | 1 | -1/+15 |
| * | Emit a warning when an empty string is input to the oid, float4, and | Neil Conway | 2004-03-04 | 2 | -5/+43 |
| * | genericcostestimate() neglected to include qual startup cost in | Tom Lane | 2004-02-27 | 1 | -1/+2 |
| * | Fix a few omissions in the initcap() documentation & source code | Neil Conway | 2004-02-27 | 1 | -5/+6 |