File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
datafusion/sqllogictest/test_files/string Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -862,26 +862,29 @@ true true true true
862862# Escapes
863863
864864# \ is an implicit escape character
865- query BBBB
865+ query BBBBBB
866866SELECT
867867 'a' LIKE '\%',
868868 '\a' LIKE '\%',
869+ '\a' LIKE '\\%',
869870 '%' LIKE '\%',
870- '\%' LIKE '\%'
871+ '\%' LIKE '\%',
872+ '\%' LIKE '\\%'
871873----
872- false false true false
874+ false false true true false true
873875
874876# \ is an implicit escape character
875- query BBBBBB
877+ query BBBBBBB
876878SELECT
877879 'a' LIKE '\_',
878880 '\a' LIKE '\_',
881+ '\a' LIKE '\\_',
879882 '_' LIKE '\_',
880883 '\_' LIKE '\_',
881884 'abc' LIKE 'a_c',
882885 'abc' LIKE 'a\_c'
883886----
884- false false true false true false
887+ false false true true false true false
885888
886889query BBBB
887890SELECT
You can’t perform that action at this time.
0 commit comments