AWS clean-rooms documentation change
Summary
Removed references to ILIKE operator and SIMILAR TO documentation link. Simplified LIKE operator description.
Security assessment
The changes involve removing documentation about case-insensitive matching (ILIKE) and a SQL regular expression operator (SIMILAR TO). This appears to be a documentation cleanup with no explicit security context or vulnerability addressed.
Diff
diff --git a/clean-rooms/latest/sql-reference/sql-contitions-pattern-matching-spark.md b/clean-rooms/latest/sql-reference/sql-contitions-pattern-matching-spark.md index 98ed32869..6a55af769 100644 --- a//clean-rooms/latest/sql-reference/sql-contitions-pattern-matching-spark.md +++ b//clean-rooms/latest/sql-reference/sql-contitions-pattern-matching-spark.md @@ -11,5 +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. - - * SIMILAR TO regular expressions - -The SIMILAR TO operator matches a string expression with a SQL standard regular expression pattern, which can include a set of pattern-matching metacharacters that includes the two supported by the LIKE operator. SIMILAR TO matches the entire string and performs a case-sensitive 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. @@ -26,2 +21,0 @@ The SIMILAR TO operator matches a string expression with a SQL standard regular - * [SIMILAR TO](./pattern-matching-conditions-similar-to.html) -