postgresql/src/backend/utils/adt
Tom Lane 352a56ba68 Allow assignment to array elements not contiguous with those already
present; intervening positions are filled with nulls.  This behavior
is required by SQL99 but was not implementable before 8.2 due to lack
of support for nulls in arrays.  I have only made it work for the
one-dimensional case, which is all that SQL99 requires.  It seems quite
complex to get it right in higher dimensions, and since we never allowed
extension at all in higher dimensions, I think that must count as a
future feature addition not a bug fix.
2006-09-29 21:22:21 +00:00
..
Makefile Fix a bunch of problems with domains by making them use special input functions 2006-04-05 22:11:58 +00:00
acl.c Get rid of the separate RULE privilege for tables: now only a table's owner 2006-09-05 21:08:36 +00:00
array_userfuncs.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
arrayfuncs.c Allow assignment to array elements not contiguous with those already 2006-09-29 21:22:21 +00:00
arrayutils.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
ascii.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
bool.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
cash.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
char.c Remove a few places that attempted to define INT_MAX, SCHAR_MAX, and 2006-03-11 01:19:22 +00:00
date.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
datetime.c Rename the recently-added pg_timezonenames view to pg_timezone_abbrevs, 2006-09-16 20:14:34 +00:00
datum.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
dbsize.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
domains.c Fix domain_in() bug exhibited by Darcy Buskermolen. The idea of an EState 2006-08-04 21:33:36 +00:00
encode.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
float.c SQL2003-standard statistical aggregates, by Sergey Koposov. I've added only 2006-07-28 18:33:04 +00:00
format_type.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
formatting.c Back out patch added during 8.2.X development: 2006-09-10 22:54:47 +00:00
genfile.c Allow include files to compile own their own. 2006-07-13 16:49:20 +00:00
geo_ops.c Update comment description of geo routines and move comment to more 2006-06-26 12:32:42 +00:00
geo_selfuncs.c Move ltree parentsel() selectivity function into /contrib/ltree. 2006-04-26 22:33:36 +00:00
inet_net_ntop.c Fix another passel of include-file breakage. Kris Jurka, Tom Lane 2006-07-14 16:59:19 +00:00
inet_net_pton.c Fix another passel of include-file breakage. Kris Jurka, Tom Lane 2006-07-14 16:59:19 +00:00
int.c Avoid use of C commment inside C comment from recent Win32 int overflow patch. 2006-06-12 16:28:52 +00:00
int8.c SQL2003-standard statistical aggregates, by Sergey Koposov. I've added only 2006-07-28 18:33:04 +00:00
like.c Change ILIKE to invoke lower() and then do plain LIKE comparison when 2006-09-04 18:32:55 +00:00
like_match.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
lockfuncs.c Fix pg_locks view to call advisory locks advisory locks, while preserving 2006-09-22 23:20:14 +00:00
mac.c Cosmetic code cleanup: fix a bunch of places that used "return (expr);" 2006-01-11 08:43:13 +00:00
misc.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
nabstime.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
name.c Fix ancient misdescription of namegt/namege in comment. Greg Stark 2006-05-30 05:22:59 +00:00
network.c Fix incorrect addition, subtraction, and overflow checking in new 2006-02-11 20:39:59 +00:00
not_in.c Add error location info to ResTarget parse nodes. Allows error cursor to be supplied 2006-03-23 00:19:30 +00:00
numeric.c Fix a passel of recently-committed violations of the rule 'thou shalt 2006-07-14 05:28:29 +00:00
numutils.c Remove a few places that attempted to define INT_MAX, SCHAR_MAX, and 2006-03-11 01:19:22 +00:00
oid.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
oracle_compat.c Fix another passel of include-file breakage. Kris Jurka, Tom Lane 2006-07-14 16:59:19 +00:00
pg_locale.c Don't choke during startup if the environment offers an invalid value 2006-06-03 17:36:10 +00:00
pg_lzcompress.c Fix a passel of recently-committed violations of the rule 'thou shalt 2006-07-14 05:28:29 +00:00
pgstatfuncs.c Add a 'waiting' column to pg_stat_activity to carry the same information 2006-08-19 01:36:34 +00:00
pseudotypes.c Update copyright for 2006. Update scripts. 2006-03-05 15:59:11 +00:00
quote.c Fix up pg_dump to do string escaping fully correctly for client encoding 2006-05-28 21:13:54 +00:00
regexp.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
regproc.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
ri_triggers.c Add some notes about why it's not a bug that RI_FKey_check calls 2006-08-27 21:41:21 +00:00
rowtypes.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
ruleutils.c Fix all known problems with pg_dump's handling of serial sequences 2006-08-21 00:57:26 +00:00
selfuncs.c Change patternsel (LIKE/regex selectivity estimation) so that if there 2006-09-20 19:50:21 +00:00
tid.c Add the ability to create indexes 'concurrently', that is, without 2006-08-25 04:06:58 +00:00
timestamp.c Fix imprecision from interval rounding of multiplication/division. 2006-09-05 01:13:40 +00:00
varbit.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
varchar.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
varlena.c Remove 576 references of include files that were not needed. 2006-07-14 14:52:27 +00:00
version.c $Header: -> $PostgreSQL Changes ... 2003-11-29 19:52:15 +00:00
xid.c Allow include files to compile own their own. 2006-07-13 16:49:20 +00:00