summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/enum.c
Commit message (Expand)AuthorAgeFilesLines
* Revert to 9.6 treatment of ALTER TYPE enumtype ADD VALUE.Tom Lane2017-09-271-90/+0
* Remove heuristic same-transaction test from check_safe_enum_use().Tom Lane2017-09-261-32/+9
* Use a blacklist to distinguish original from add-on enum values.Tom Lane2017-09-261-0/+9
* Phase 3 of pgindent updates.Tom Lane2017-06-211-1/+1
* Add an Assert that enum_cmp_internal() gets passed an FmgrInfo pointer.Tom Lane2017-02-231-6/+10
* Update copyright via script for 2017Bruce Momjian2017-01-031-1/+1
* Relax transactional restrictions on ALTER TYPE ... ADD VALUE.Tom Lane2016-09-051-0/+104
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Remove enum-related special cases for catalog scans.Robert Haas2015-04-291-9/+6
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Fix CVE-2013-0255 properly.Tom Lane2013-02-131-5/+0
* Prevent execution of enum_recv() from SQL.Tom Lane2013-02-041-0/+5
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Split tuple struct defs from htup.h to htup_details.hAlvaro Herrera2012-08-301-0/+1
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Clean up the #include mess a little.Tom Lane2011-09-041-0/+1
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-011-2/+0
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-2/+2
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Allow new values to be added to an existing enum type.Tom Lane2010-10-241-83/+176
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* pgindent run for 9.0Bruce Momjian2010-02-261-3/+3
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-24/+12
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* binary migration: pg_migratorBruce Momjian2009-12-191-1/+5
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-56/+62
* Provide for binary input/output of enums, to fix complaint from Merlin Moncure.Andrew Dunstan2007-09-041-1/+70
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-051-106/+48
* Check length of enum literals on definition and input to make sure they will ...Andrew Dunstan2007-04-021-1/+10
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-021-0/+409