Lines Matching refs:abc
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
165 test_expr expr-3.3 {t1='abc', 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
168 test_expr expr-3.6 {t1='abc', t2='abc'} {t1<=t2} 1
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
171 test_expr expr-3.9 {t1='abc', t2='abc'} {t1>t2} 0
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
174 test_expr expr-3.12 {t1='abc', 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
177 test_expr expr-3.15 {t1='abc', t2='abc'} {t1=t2} 1
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
180 test_expr expr-3.18 {t1='abc', t2='abc'} {t1==t2} 1
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
183 test_expr expr-3.21 {t1='abc', t2='abc'} {t1<>t2} 0
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
186 test_expr expr-3.24 {t1='abc', t2='abc'} {t1!=t2} 0
193 test_expr expr-3.29 {t1='xyz', t2='abc'} {t1||t2} {xyzabc}
194 test_expr expr-3.30 {t1=NULL, t2='abc'} {t1||t2} {{}}
196 test_expr expr-3.32 {t1='xyz', t2='abc'} {t1||' hi '||t2} {{xyz hi abc}}
197 test_expr epxr-3.33 {t1='abc', t2=NULL} {coalesce(t1<t2,99)} 99
198 test_expr epxr-3.34 {t1='abc', t2=NULL} {coalesce(t2<t1,99)} 99
199 test_expr epxr-3.35 {t1='abc', t2=NULL} {coalesce(t1>t2,99)} 99
200 test_expr epxr-3.36 {t1='abc', t2=NULL} {coalesce(t2>t1,99)} 99
201 test_expr epxr-3.37 {t1='abc', t2=NULL} {coalesce(t1<=t2,99)} 99
202 test_expr epxr-3.38 {t1='abc', t2=NULL} {coalesce(t2<=t1,99)} 99
203 test_expr epxr-3.39 {t1='abc', t2=NULL} {coalesce(t1>=t2,99)} 99
204 test_expr epxr-3.40 {t1='abc', t2=NULL} {coalesce(t2>=t1,99)} 99
205 test_expr epxr-3.41 {t1='abc', t2=NULL} {coalesce(t1==t2,99)} 99
206 test_expr epxr-3.42 {t1='abc', t2=NULL} {coalesce(t2==t1,99)} 99
207 test_expr epxr-3.43 {t1='abc', t2=NULL} {coalesce(t1!=t2,99)} 99
208 test_expr epxr-3.44 {t1='abc', t2=NULL} {coalesce(t2!=t1,99)} 99
211 test_expr expr-4.1 {t1='abc', t2='Abc'} {t1<t2} 0
212 test_expr expr-4.2 {t1='abc', t2='Abc'} {t1>t2} 1
213 test_expr expr-4.3 {t1='abc', t2='Bbc'} {t1<t2} 0
214 test_expr expr-4.4 {t1='abc', t2='Bbc'} {t1>t2} 1
218 test_expr expr-4.8 {t1='0.0', t2='abc'} {t1<t2} 1
219 test_expr expr-4.9 {t1='0.0', t2='abc'} {t1==t2} 0
220 test_expr expr-4.10 {r1='0.0', r2='abc'} {r1>r2} 0
221 test_expr expr-4.11 {r1='abc', r2='Abc'} {r1<r2} 0
222 test_expr expr-4.12 {r1='abc', r2='Abc'} {r1>r2} 1
223 test_expr expr-4.13 {r1='abc', r2='Bbc'} {r1<r2} 0
224 test_expr expr-4.14 {r1='abc', r2='Bbc'} {r1>r2} 1
228 test_expr expr-4.18 {r1='0.0', r2='abc'} {r1<r2} 1
229 test_expr expr-4.19 {r1='0.0', r2='abc'} {r1==r2} 0
230 test_expr expr-4.20 {r1='0.0', r2='abc'} {r1>r2} 0
232 test_expr expr-5.1 {t1='abc', t2='xyz'} {t1 LIKE t2} 0
233 test_expr expr-5.2 {t1='abc', t2='ABC'} {t1 LIKE t2} 1
234 test_expr expr-5.3 {t1='abc', t2='A_C'} {t1 LIKE t2} 1
235 test_expr expr-5.4 {t1='abc', t2='abc_'} {t1 LIKE t2} 0
236 test_expr expr-5.5 {t1='abc', t2='A%C'} {t1 LIKE t2} 1
242 test_expr expr-5.9 {t1='abc', t2='A%_C'} {t1 LIKE t2} 1
245 test_expr expr-5.11 {t1='abc', t2='xyz'} {t1 NOT LIKE t2} 1
246 test_expr expr-5.12 {t1='abc', t2='ABC'} {t1 NOT LIKE t2} 0
283 test_expr expr-5.54 {t1='abc', t2=NULL} {t1 LIKE t2} {{}}
284 test_expr expr-5.55 {t1='abc', t2=NULL} {t1 NOT LIKE t2} {{}}
285 test_expr expr-5.56 {t1='abc', t2=NULL} {t2 LIKE t1} {{}}
286 test_expr expr-5.57 {t1='abc', t2=NULL} {t2 NOT LIKE t1} {{}}
289 test_expr expr-6.1 {t1='abc', t2='xyz'} {t1 GLOB t2} 0
290 test_expr expr-6.2 {t1='abc', t2='ABC'} {t1 GLOB t2} 0
291 test_expr expr-6.3 {t1='abc', t2='A?C'} {t1 GLOB t2} 0
292 test_expr expr-6.4 {t1='abc', t2='a?c'} {t1 GLOB t2} 1
293 test_expr expr-6.5 {t1='abc', t2='abc?'} {t1 GLOB t2} 0
294 test_expr expr-6.6 {t1='abc', t2='A*C'} {t1 GLOB t2} 0
295 test_expr expr-6.7 {t1='abc', t2='a*c'} {t1 GLOB t2} 1
299 test_expr expr-6.11 {t1='abc', t2='xyz'} {t1 NOT GLOB t2} 1
300 test_expr expr-6.12 {t1='abc', t2='abc'} {t1 NOT GLOB t2} 0
301 test_expr expr-6.13 {t1='abc', t2='a[bx]c'} {t1 GLOB t2} 1
302 test_expr expr-6.14 {t1='abc', t2='a[cx]c'} {t1 GLOB t2} 0
303 test_expr expr-6.15 {t1='abc', t2='a[a-d]c'} {t1 GLOB t2} 1
304 test_expr expr-6.16 {t1='abc', t2='a[^a-d]c'} {t1 GLOB t2} 0
305 test_expr expr-6.17 {t1='abc', t2='a[A-Dc]c'} {t1 GLOB t2} 0
306 test_expr expr-6.18 {t1='abc', t2='a[^A-Dc]c'} {t1 GLOB t2} 1
307 test_expr expr-6.19 {t1='abc', t2='a[]b]c'} {t1 GLOB t2} 1
308 test_expr expr-6.20 {t1='abc', t2='a[^]b]c'} {t1 GLOB t2} 0
342 test_expr expr-6.52 {t1='ABC', t2='abc'} {t1 GLOB t2} 0
345 test_expr expr-6.55 {t1='ABC', t2='abc?'} {t1 GLOB t2} 0