summaryrefslogtreecommitdiff
path: root/src/test/regress/sql/arrays.sql
AgeCommit message (Expand)Author
2017-06-28Merge remote-tracking branch 'remotes/origin/master' into xl10develPavan Deolasee
2017-06-20Fix regression errors due to ROUNDROBIN randomizationTomas Vondra
2017-06-14Merge from PG master upto d5cb3bab564e0927ffac7c8729eacf181a12dd40Pavan Deolasee
2017-03-11Improve expression evaluation test coverage.Andres Freund
2017-01-05Fix handling of empty arrays in array_fill().Tom Lane
2016-12-09Fix crasher bug in array_position(s)Alvaro Herrera
2016-10-27Merge commit 'b5bce6c1ec6061c8a4f730d927e162db7e2ce365'Pavan Deolasee
2015-12-23Allow omitting one or both boundaries in an array slice specifier.Tom Lane
2015-12-18Revert 9246af6799819847faa33baf441251003acbb8fe becauseTeodor Sigaev
2015-12-18Allow to omit boundaries in array subscriptTeodor Sigaev
2015-07-24Fix bug around assignment expressions containing indirections.Andres Freund
2015-06-04Merge remote-tracking branch 'remotes/PGSQL/master' into XL_NEW_MASTERPavan Deolasee
2015-04-27Merge commit 'ab76208e3df6841b3770edeece57d0f048392237' into XL_MASTER_MERGE_9_4Pavan Deolasee
2015-03-30Change array_offset to return subscripts, not offsetsAlvaro Herrera
2015-03-18array_offset() and array_offsets()Alvaro Herrera
2014-11-25Support arrays as input to array_agg() and ARRAY(SELECT ...).Tom Lane
2014-09-09Add width_bucket(anyelement, anyarray).Tom Lane
2014-09-01Make necessary changes to regression test cases and expected output files toPavan Deolasee
2014-05-01Fix failure to detoast fields in composite elements of structured types.Tom Lane
2014-02-01arrays: tighten checks for multi-dimensional inputBruce Momjian
2014-01-21Add a cardinality function for arrays.Robert Haas
2013-12-11Tweak placement of explicit ANALYZE commands in the regression tests.Tom Lane
2013-06-01Don't emit non-canonical empty arrays in array_remove().Noah Misch
2013-05-12Fix handling of strict non-set functions with NULLs in set-valued inputs.Tom Lane
2012-08-22Remove reserved keywords REPLICATION, MODULO, HASH, ROUND and ROBINMichael Paquier
2012-07-27Merge commit '80edfd76591fdb9beec061de3c05ef4e9d96ce56' into postgres-xc/masterMichael Paquier
2012-07-11Add array_remove() and array_replace() functions.Tom Lane
2012-04-23Remove additional output for test arraysMichael Paquier
2012-04-05New GUC parameter to control 2PC usage for temporary objectsMichael P
2012-03-04Collect and use element-frequency statistics for arrays.Tom Lane
2011-07-06Merge commit 'a4bebdd92624e018108c2610fc3f2c1584b6c687' into masterMichael P
2011-05-20Merge commit '1084f317702e1a039696ab8a37caf900e55ec8f2' into int-pgxcPavan Deolasee
2011-05-19Updated regression tests.Mason Sharp
2011-01-08Fix GIN to support null keys, empty and null items, and full index scans.Tom Lane
2010-11-23Remove useless whitespace at end of linesPeter Eisentraut
2010-08-10Add three-parameter forms of array_to_string and string_to_array, to allowTom Lane
2010-02-18Fix ExecEvalArrayRef to pass down the old value of the array element or sliceTom Lane
2009-04-09Remove SQL-compatibility function cardinality(). It is not exactly clearTom Lane
2008-11-29Fix recently-added array_agg tests to ensure they produce stable resultsTom Lane
2008-11-14Implement the basic form of UNNEST, ie unnest(anyarray) returns setofTom Lane
2008-11-13array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut
2008-11-12array_length() function, and for SQL compatibility also cardinality()Peter Eisentraut
2008-11-05A few additional test cases for array functionalityPeter Eisentraut
2008-11-04ADD array_ndims functionPeter Eisentraut
2008-07-16Add array_fill() to create arrays initialized with a value.Bruce Momjian
2008-04-28Add generate_subscripts, a series-generation function which generates anAlvaro Herrera
2008-03-20Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane
2007-05-12Fix the problem that creating a user-defined type named _foo, followed by oneTom Lane
2006-09-29Allow assignment to array elements not contiguous with those alreadyTom Lane
2006-09-10Rename contains/contained-by operators to @> and <@, per discussion thatTom Lane