summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/varlena.c
Commit message (Expand)AuthorAgeFilesLines
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Add string functions: concat(), concat_ws(), left(), right(), and reverse().Itagaki Takahiro2010-08-241-1/+147
* Add three-parameter forms of array_to_string and string_to_array, to allowTom Lane2010-08-101-65/+228
* Remove the single-argument form of string_agg(). It added nothing much inTom Lane2010-08-051-24/+2
* pgindent run for 9.0Bruce Momjian2010-02-261-74/+74
* Create an official API function for C functions to use to check if they areTom Lane2010-02-081-22/+18
* Add string_agg aggregate functions. The one argument version concatenatesItagaki Takahiro2010-02-011-1/+105
* Add get_bit/set_bit functions for bit strings, paralleling those for bytea,Tom Lane2010-01-251-21/+193
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Support hex-string input and output for type BYTEA.Tom Lane2009-08-041-19/+55
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-31/+36
* varstr_cmp and any comparison function that piggybacks on it can returnHeikki Linnakangas2009-04-231-2/+3
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Reimplement text_position and related functions to use Boyer-Moore-HorspoolTom Lane2008-09-071-30/+185
* Alter the xxx_pattern_ops opclasses to use the regular equality operator ofTom Lane2008-05-271-45/+12
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-2/+1
* Clean up a few places where Datums were being treated as pointers withoutTom Lane2008-04-121-2/+3
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-72/+124
* Fix varstr_cmp's special case for UTF8 encoding on Windows so that stringsTom Lane2008-03-131-1/+14
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-8/+8
* pgindent run for 8.3.Bruce Momjian2007-11-151-19/+20
* Although I'd misdiagnosed the reason for the recent failures onTom Lane2007-09-221-2/+2
* Fix varlena.c routines to allow 1-byte-header text values. This is nowTom Lane2007-09-221-32/+33
* Make replace(), split_part(), and string_to_array() behave somewhat sanelyTom Lane2007-07-191-14/+53
* Support varlena fields with single-byte headers and unaligned storage.Tom Lane2007-04-061-145/+135
* Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane2007-02-271-10/+10
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Fix performance issues in replace_text(), replace_text_regexp(), andTom Lane2006-11-081-56/+131
* Fix string_to_array() to correctly handle the case where there areTom Lane2006-10-071-138/+197
* pgindent run for 8.2.Bruce Momjian2006-10-041-8/+8
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-5/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+2
* Split definitions for md5.c out of crypt.h and into their own headerTom Lane2006-06-201-2/+2
* Change the backend to reject strings containing invalidly-encoded multibyteTom Lane2006-05-211-7/+1
* Modify all callers of datatype input and receive functions so that if theseTom Lane2006-04-041-3/+2
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Attached is a patch that replaces a bunch of places where StringInfosNeil Conway2006-03-011-27/+28
* Fix typo in comment.Neil Conway2006-02-261-2/+2
* Adjust string comparison so that only bitwise-equal strings are consideredTom Lane2005-12-221-5/+22
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-14/+14
* Mop-up for nulls-in-arrays patch: fix some places that access arrayTom Lane2005-11-181-13/+39
* Message correctionsPeter Eisentraut2005-10-291-5/+4
* Code review for regexp_replace patch. Improve documentation and comments,Tom Lane2005-10-181-54/+78
* Clean up libpq's pollution of application namespace by renaming theTom Lane2005-10-171-3/+3
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-107/+107
* Suppress signed-vs-unsigned-char warnings.Tom Lane2005-09-241-3/+3
* Update two comments to refer to use the new list API names.Neil Conway2005-09-161-2/+2
* The idea of using _strncoll() on Windows doesn't work. Revert to sameTom Lane2005-08-261-37/+30
* Add small hack to support use of Unicode-based locales on WIN32. ThisTom Lane2005-08-241-6/+85