tg icon indicating copy to clipboard operation
tg copied to clipboard

EQL: extend LIKE operator with ESCAPE sequence

Open ghost opened this issue 7 years ago • 1 comments

Description

Currently like() operator in EQL has no possibility to search for the presence of characters that would normally be interpreted as wildcards.

Such feature is supported in standard SQL via optional parameter of LIKE operator -- LIKE string_pattern [ESCAPE escape_sequence].

Need to enhance EQL like() operator in similar manner.

Expected outcome

The ability to include wildcards within EQL like() operator search.

ghost avatar Nov 28 '18 22:11 ghost

Automatic escaping of wildcard characters was implemented in #2377.

homedirectory avatar May 07 '25 12:05 homedirectory