Add tests for bytea LIKE operator

Peter Eisentraut <peter.eisentraut@enterprisedb.com>

From: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
To: pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2021-02-11T13:23:14Z
Lists: pgsql-hackers

Attachments

A few more easy tests for things not covered at all:

     bytea LIKE bytea (bytealike)
     bytea NOT LIKE bytea (byteanlike)
     ESCAPE clause for the above (like_escape_bytea)

also

     name NOT ILIKE text (nameicnlike)

See also 
<https://coverage.postgresql.org/src/backend/utils/adt/like.c.func-sort-c.html>.

Commits

  1. Add tests for bytea LIKE operator