summaryrefslogtreecommitdiff
path: root/src/test/regress/sql/arrays.sql
AgeCommit message (Expand)Author
2025-04-01Introduce a SQL-callable function array_sort(anyarray).Tom Lane
2025-03-13Fix ARRAY_SUBLINK and ARRAY[] for int2vector and oidvector input.Tom Lane
2024-11-03Add missing newlines at the end of two SQL filesMichael Paquier
2024-11-01Add SQL function array_reverse()Michael Paquier
2024-07-24Detect integer overflow in array_set_slice().Nathan Bossart
2023-11-13Improve readability and error detection of array_in().Tom Lane
2023-11-06Detect integer overflow while computing new array dimensions.Tom Lane
2023-04-07Add array_sample() and array_shuffle() functions.Tom Lane
2023-03-13Remove incidental md5() function uses from main regression testsPeter Eisentraut
2023-02-27Rework pg_input_error_message(), now renamed pg_input_error_info()Michael Paquier
2022-12-09Convert a few datatype input functions to use "soft" error reporting.Tom Lane
2022-07-31Fix trim_array() for zero-dimensional array argument.Tom Lane
2022-02-08Rearrange core regression tests to reduce cross-script dependencies.Tom Lane
2022-01-29Fix failure to validate the result of select_common_type().Tom Lane
2021-03-03Add trim_array() function.Tom Lane
2020-12-09Support subscripting of arbitrary types, not only arrays.Tom Lane
2020-12-07Add a couple of regression test cases related to array subscripting.Tom Lane
2020-11-19Remove undocumented IS [NOT] OF syntax.Tom Lane
2020-11-04Declare assorted array functions using anycompatible not anyelement.Tom Lane
2020-09-02Add string_to_table() function.Tom Lane
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
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-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-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-07-11Add array_remove() and array_replace() functions.Tom Lane
2012-03-04Collect and use element-frequency statistics for arrays.Tom Lane
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