On the Couchbase documentation
https://docs.couchbase.com/server/6.0/n1ql/n1ql-language-reference/patternmatchingfun.html
I saw that:
REGEXP_CONTAINS(expression, pattern)
Returns True if the string value contains the regular expression pattern.
REGEXP_LIKE(expression, pattern)
Returns True if the string value contains the regular expression pattern.
Is there any difference between this functions or one is an alias for another?