Lines Matching refs:xyz
163 test_expr expr-3.1 {t1='abc', t2='xyz'} {t1<t2} 1
164 test_expr expr-3.2 {t1='xyz', t2='abc'} {t1<t2} 0
166 test_expr expr-3.4 {t1='abc', t2='xyz'} {t1<=t2} 1
167 test_expr expr-3.5 {t1='xyz', t2='abc'} {t1<=t2} 0
169 test_expr expr-3.7 {t1='abc', t2='xyz'} {t1>t2} 0
170 test_expr expr-3.8 {t1='xyz', t2='abc'} {t1>t2} 1
172 test_expr expr-3.10 {t1='abc', t2='xyz'} {t1>=t2} 0
173 test_expr expr-3.11 {t1='xyz', t2='abc'} {t1>=t2} 1
175 test_expr expr-3.13 {t1='abc', t2='xyz'} {t1=t2} 0
176 test_expr expr-3.14 {t1='xyz', t2='abc'} {t1=t2} 0
178 test_expr expr-3.16 {t1='abc', t2='xyz'} {t1==t2} 0
179 test_expr expr-3.17 {t1='xyz', t2='abc'} {t1==t2} 0
181 test_expr expr-3.19 {t1='abc', t2='xyz'} {t1<>t2} 1
182 test_expr expr-3.20 {t1='xyz', t2='abc'} {t1<>t2} 1
184 test_expr expr-3.22 {t1='abc', t2='xyz'} {t1!=t2} 1
185 test_expr expr-3.23 {t1='xyz', t2='abc'} {t1!=t2} 1
193 test_expr expr-3.29 {t1='xyz', t2='abc'} {t1||t2} {xyzabc}
195 test_expr expr-3.31 {t1='xyz', t2=NULL} {t1||t2} {{}}
196 test_expr expr-3.32 {t1='xyz', t2='abc'} {t1||' hi '||t2} {{xyz hi abc}}
232 test_expr expr-5.1 {t1='abc', t2='xyz'} {t1 LIKE t2} 0
245 test_expr expr-5.11 {t1='abc', t2='xyz'} {t1 NOT LIKE t2} 1
289 test_expr expr-6.1 {t1='abc', t2='xyz'} {t1 GLOB t2} 0
299 test_expr expr-6.11 {t1='abc', t2='xyz'} {t1 NOT GLOB t2} 1
341 test_expr expr-6.51 {t1='ABC', t2='xyz'} {t1 GLOB t2} 0
351 test_expr expr-6.61 {t1='ABC', t2='xyz'} {t1 NOT GLOB t2} 1