Lines Matching refs:abc

161 test_expr expr-3.1 {t1='abc', t2='xyz'} {t1<t2} 1
162 test_expr expr-3.2 {t1='xyz', t2='abc'} {t1<t2} 0
163 test_expr expr-3.3 {t1='abc', t2='abc'} {t1<t2} 0
164 test_expr expr-3.4 {t1='abc', t2='xyz'} {t1<=t2} 1
165 test_expr expr-3.5 {t1='xyz', t2='abc'} {t1<=t2} 0
166 test_expr expr-3.6 {t1='abc', t2='abc'} {t1<=t2} 1
167 test_expr expr-3.7 {t1='abc', t2='xyz'} {t1>t2} 0
168 test_expr expr-3.8 {t1='xyz', t2='abc'} {t1>t2} 1
169 test_expr expr-3.9 {t1='abc', t2='abc'} {t1>t2} 0
170 test_expr expr-3.10 {t1='abc', t2='xyz'} {t1>=t2} 0
171 test_expr expr-3.11 {t1='xyz', t2='abc'} {t1>=t2} 1
172 test_expr expr-3.12 {t1='abc', t2='abc'} {t1>=t2} 1
173 test_expr expr-3.13 {t1='abc', t2='xyz'} {t1=t2} 0
174 test_expr expr-3.14 {t1='xyz', t2='abc'} {t1=t2} 0
175 test_expr expr-3.15 {t1='abc', t2='abc'} {t1=t2} 1
176 test_expr expr-3.16 {t1='abc', t2='xyz'} {t1==t2} 0
177 test_expr expr-3.17 {t1='xyz', t2='abc'} {t1==t2} 0
178 test_expr expr-3.18 {t1='abc', t2='abc'} {t1==t2} 1
179 test_expr expr-3.19 {t1='abc', t2='xyz'} {t1<>t2} 1
180 test_expr expr-3.20 {t1='xyz', t2='abc'} {t1<>t2} 1
181 test_expr expr-3.21 {t1='abc', t2='abc'} {t1<>t2} 0
182 test_expr expr-3.22 {t1='abc', t2='xyz'} {t1!=t2} 1
183 test_expr expr-3.23 {t1='xyz', t2='abc'} {t1!=t2} 1
184 test_expr expr-3.24 {t1='abc', t2='abc'} {t1!=t2} 0
191 test_expr expr-3.29 {t1='xyz', t2='abc'} {t1||t2} {xyzabc}
192 test_expr expr-3.30 {t1=NULL, t2='abc'} {t1||t2} {{}}
194 test_expr expr-3.32 {t1='xyz', t2='abc'} {t1||' hi '||t2} {{xyz hi abc}}
195 test_expr epxr-3.33 {t1='abc', t2=NULL} {coalesce(t1<t2,99)} 99
196 test_expr epxr-3.34 {t1='abc', t2=NULL} {coalesce(t2<t1,99)} 99
197 test_expr epxr-3.35 {t1='abc', t2=NULL} {coalesce(t1>t2,99)} 99
198 test_expr epxr-3.36 {t1='abc', t2=NULL} {coalesce(t2>t1,99)} 99
199 test_expr epxr-3.37 {t1='abc', t2=NULL} {coalesce(t1<=t2,99)} 99
200 test_expr epxr-3.38 {t1='abc', t2=NULL} {coalesce(t2<=t1,99)} 99
201 test_expr epxr-3.39 {t1='abc', t2=NULL} {coalesce(t1>=t2,99)} 99
202 test_expr epxr-3.40 {t1='abc', t2=NULL} {coalesce(t2>=t1,99)} 99
203 test_expr epxr-3.41 {t1='abc', t2=NULL} {coalesce(t1==t2,99)} 99
204 test_expr epxr-3.42 {t1='abc', t2=NULL} {coalesce(t2==t1,99)} 99
205 test_expr epxr-3.43 {t1='abc', t2=NULL} {coalesce(t1!=t2,99)} 99
206 test_expr epxr-3.44 {t1='abc', t2=NULL} {coalesce(t2!=t1,99)} 99
209 test_expr expr-4.1 {t1='abc', t2='Abc'} {t1<t2} 0
210 test_expr expr-4.2 {t1='abc', t2='Abc'} {t1>t2} 1
211 test_expr expr-4.3 {t1='abc', t2='Bbc'} {t1<t2} 0
212 test_expr expr-4.4 {t1='abc', t2='Bbc'} {t1>t2} 1
216 test_expr expr-4.8 {t1='0.0', t2='abc'} {t1<t2} 1
217 test_expr expr-4.9 {t1='0.0', t2='abc'} {t1==t2} 0
218 test_expr expr-4.10 {r1='0.0', r2='abc'} {r1>r2} 0
219 test_expr expr-4.11 {r1='abc', r2='Abc'} {r1<r2} 0
220 test_expr expr-4.12 {r1='abc', r2='Abc'} {r1>r2} 1
221 test_expr expr-4.13 {r1='abc', r2='Bbc'} {r1<r2} 0
222 test_expr expr-4.14 {r1='abc', r2='Bbc'} {r1>r2} 1
226 test_expr expr-4.18 {r1='0.0', r2='abc'} {r1<r2} 1
227 test_expr expr-4.19 {r1='0.0', r2='abc'} {r1==r2} 0
228 test_expr expr-4.20 {r1='0.0', r2='abc'} {r1>r2} 0
230 test_expr expr-5.1 {t1='abc', t2='xyz'} {t1 LIKE t2} 0
231 test_expr expr-5.2 {t1='abc', t2='ABC'} {t1 LIKE t2} 1
232 test_expr expr-5.3 {t1='abc', t2='A_C'} {t1 LIKE t2} 1
233 test_expr expr-5.4 {t1='abc', t2='abc_'} {t1 LIKE t2} 0
234 test_expr expr-5.5 {t1='abc', t2='A%C'} {t1 LIKE t2} 1
240 test_expr expr-5.9 {t1='abc', t2='A%_C'} {t1 LIKE t2} 1
243 test_expr expr-5.11 {t1='abc', t2='xyz'} {t1 NOT LIKE t2} 1
244 test_expr expr-5.12 {t1='abc', t2='ABC'} {t1 NOT LIKE t2} 0
281 test_expr expr-5.54 {t1='abc', t2=NULL} {t1 LIKE t2} {{}}
282 test_expr expr-5.55 {t1='abc', t2=NULL} {t1 NOT LIKE t2} {{}}
283 test_expr expr-5.56 {t1='abc', t2=NULL} {t2 LIKE t1} {{}}
284 test_expr expr-5.57 {t1='abc', t2=NULL} {t2 NOT LIKE t1} {{}}
287 test_expr expr-6.1 {t1='abc', t2='xyz'} {t1 GLOB t2} 0
288 test_expr expr-6.2 {t1='abc', t2='ABC'} {t1 GLOB t2} 0
289 test_expr expr-6.3 {t1='abc', t2='A?C'} {t1 GLOB t2} 0
290 test_expr expr-6.4 {t1='abc', t2='a?c'} {t1 GLOB t2} 1
291 test_expr expr-6.5 {t1='abc', t2='abc?'} {t1 GLOB t2} 0
292 test_expr expr-6.6 {t1='abc', t2='A*C'} {t1 GLOB t2} 0
293 test_expr expr-6.7 {t1='abc', t2='a*c'} {t1 GLOB t2} 1
297 test_expr expr-6.11 {t1='abc', t2='xyz'} {t1 NOT GLOB t2} 1
298 test_expr expr-6.12 {t1='abc', t2='abc'} {t1 NOT GLOB t2} 0
299 test_expr expr-6.13 {t1='abc', t2='a[bx]c'} {t1 GLOB t2} 1
300 test_expr expr-6.14 {t1='abc', t2='a[cx]c'} {t1 GLOB t2} 0
301 test_expr expr-6.15 {t1='abc', t2='a[a-d]c'} {t1 GLOB t2} 1
302 test_expr expr-6.16 {t1='abc', t2='a[^a-d]c'} {t1 GLOB t2} 0
303 test_expr expr-6.17 {t1='abc', t2='a[A-Dc]c'} {t1 GLOB t2} 0
304 test_expr expr-6.18 {t1='abc', t2='a[^A-Dc]c'} {t1 GLOB t2} 1
305 test_expr expr-6.19 {t1='abc', t2='a[]b]c'} {t1 GLOB t2} 1
306 test_expr expr-6.20 {t1='abc', t2='a[^]b]c'} {t1 GLOB t2} 0
340 test_expr expr-6.52 {t1='ABC', t2='abc'} {t1 GLOB t2} 0
343 test_expr expr-6.55 {t1='ABC', t2='abc?'} {t1 GLOB t2} 0