summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/strings.out
AgeCommit message (Expand)Author
2025-11-20Add HINT listing valid encodings to encode() and decode() errors.Fujii Masao
2025-10-06Optimize hex_encode() and hex_decode() using SIMD.Nathan Bossart
2025-09-20Add support for base64url encoding and decodingDaniel Gustafsson
2025-09-13Amend recent fix for SIMILAR TO regex conversion.Tom Lane
2025-08-06Add regression test for short varlenas saved in TOAST relationsMichael Paquier
2025-07-18Speed up byteain by not parsing traditional-style input twice.Tom Lane
2025-05-28Adjust regex for test with opening parenthesis in character classesMichael Paquier
2025-05-27Fix conversion of SIMILAR TO regexes for character classesMichael Paquier
2025-04-06Compute CRC32C using AVX-512 instructions where availableJohn Naylor
2025-03-24Add tests for POSITION(bytea, bytea)David Rowley
2025-03-13Add reverse(bytea).Nathan Bossart
2025-03-07Allow casting between bytea and integer types.Dean Rasheed
2024-08-12Add user-callable CRC functions.Nathan Bossart
2024-05-17Revise GUC names quoting in messages againPeter Eisentraut
2023-08-23Add to_bin() and to_oct().Nathan Bossart
2023-03-01Avoid fetching one past the end of translate()'s "to" parameter.Tom Lane
2023-02-27Rework pg_input_error_message(), now renamed pg_input_error_info()Michael Paquier
2022-12-15Convert a few more datatype input functions to report errors softly.Tom Lane
2022-10-13Put tests of md5() function into separate test filePeter Eisentraut
2021-08-10Let regexp_replace() make use of REG_NOSUB when feasible.Tom Lane
2021-08-03Add assorted new regexp_xxx SQL functions.Tom Lane
2021-03-29Add unistr functionPeter Eisentraut
2021-03-29Reset standard_conforming_strings in strings testPeter Eisentraut
2021-03-23Add bit_count SQL functionPeter Eisentraut
2021-02-18Add tests for bytea LIKE operatorPeter Eisentraut
2021-01-18Add bytea equivalents of ltrim() and rtrim().Tom Lane
2021-01-04Fix integer-overflow corner cases in substring() functions.Tom Lane
2020-11-13Support negative indexes in split_part().Tom Lane
2020-06-29Add current substring regular expression syntaxPeter Eisentraut
2020-04-07Adjust bytea get_bit/set_bit to use int8 not int4 for bit numbering.Tom Lane
2020-03-06Allow Unicode escapes in any server encoding, not only UTF-8.Tom Lane
2020-01-13Reduce size of backend scanner's tables.Tom Lane
2019-10-28Handle empty-string edge cases correctly in strpos().Tom Lane
2019-09-07Fix issues around strictness of SIMILAR TO.Tom Lane
2019-05-17Fix regression test outputsMichael Paquier
2019-05-14Fix SQL-style substring() to have spec-compliant greediness behavior.Tom Lane
2019-04-15Unbreak index optimization for LIKE on byteaPeter Eisentraut
2019-04-04Improve readability of some tests in strings.sqlMichael Paquier
2018-09-12Repair bug in regexp split performance improvements.Andrew Gierth
2018-02-22Add user-callable SHA-2 functionsPeter Eisentraut
2017-11-20Reduce test variability for toast_tuple_target testSimon Riggs
2017-11-19Parameter toast_tuple_target controls TOAST for new rowsSimon Riggs
2016-08-17Implement regexp_match(), a simplified alternative to regexp_matches().Tom Lane
2013-07-31Fix regexp_matches() handling of zero-length matches.Tom Lane
2013-05-16Fix some uses of "the quick brown fox".Tom Lane
2013-04-20Clean up references to SQL92Peter Eisentraut
2010-05-28Rewrite LIKE's %-followed-by-_ optimization so it really works (this timeTom Lane
2010-01-25Add get_bit/set_bit functions for bit strings, paralleling those for bytea,Tom Lane
2009-08-04Support hex-string input and output for type BYTEA.Tom Lane
2009-05-24Fix LIKE's special-case code for % followed by _. I'm not entirely sure thatTom Lane