AWS clean-rooms documentation change
Summary
Removed mention of ILIKE operator performing case-insensitive matches from LIKE operator documentation.
Security assessment
This change removes a statement about case-insensitive pattern matching but does not indicate any security vulnerability or mitigation. It appears to be a documentation correction.
Diff
diff --git a/clean-rooms/latest/sql-reference/sql-contitions-pattern-matching.md b/clean-rooms/latest/sql-reference/sql-contitions-pattern-matching.md index 3cec41cf8..3fd55e734 100644 --- a//clean-rooms/latest/sql-reference/sql-contitions-pattern-matching.md +++ b//clean-rooms/latest/sql-reference/sql-contitions-pattern-matching.md @@ -11 +11 @@ A pattern-matching operator searches a string for a pattern specified in the con -The LIKE operator compares a string expression, such as a column name, with a pattern that uses the wildcard characters `%` (percent) and `_` (underscore). LIKE pattern matching always covers the entire string. LIKE performs a case-sensitive match and ILIKE performs a case-insensitive match. +The LIKE operator compares a string expression, such as a column name, with a pattern that uses the wildcard characters `%` (percent) and `_` (underscore). LIKE pattern matching always covers the entire string. LIKE performs a case-sensitive match.