~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/string_functions/tests/r/regex.result

  • Committer: Barry.Leslie at PrimeBase
  • Date: 2011-01-22 03:22:44 UTC
  • mfrom: (2101 staging)
  • mto: (2228.1.4 build)
  • mto: This revision was merged to the branch mainline in revision 2230.
  • Revision ID: barry.leslie@primebase.com-20110122032244-ukbe3mlj7fs8xph6
Merged with lp:drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE table t1 (xxx char(128));
 
2
INSERT into t1 (xxx) values('this is a test of some long text to see what happens');
 
3
SELECT * from t1 where xxx regexp('is a test of some long text to');
 
4
xxx
 
5
EXPLAIN EXTENDED SELECT * FROM t1 WHERE xxx REGEXP('is a test of some long text to');
 
6
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
 
7
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    1       100.00  Using where
 
8
Warnings:
 
9
Note    1003    select `test`.`t1`.`xxx` AS `xxx` from `test`.`t1` where regex(`test`.`t1`.`xxx`,'is a test of some long text to')
 
10
SELECT * from t1 where xxx regexp('is a test of some long text to ');
 
11
xxx
 
12
SELECT * from t1 where xxx regexp('is a test of some long text to s');
 
13
xxx
 
14
SELECT * from t1 where xxx regexp('is a test of some long text to se');
 
15
xxx
 
16
DROP table t1;
 
17
CREATE table t1 (xxx char(128));
 
18
INSERT into t1 (xxx) values('this is some text: to test - out.reg exp (22/45)');
 
19
SELECT * from t1 where xxx REGEXP '^this is some text: to test - out\\.regexp [[(][0-9]+[/\\][0-9]+[])][ ]*$';
 
20
xxx
 
21
DROP table t1;
 
22
SELECT 1 REGEXP NULL;
 
23
1 REGEXP NULL
 
24
NULL
 
25
SELECT '' REGEXP BINARY NULL;
 
26
'' REGEXP BINARY NULL
 
27
NULL
 
28
SELECT NULL REGEXP BINARY NULL;
 
29
NULL REGEXP BINARY NULL
 
30
NULL
 
31
SELECT 'A' REGEXP BINARY NULL;
 
32
'A' REGEXP BINARY NULL
 
33
NULL
 
34
SELECT "ABC" REGEXP BINARY NULL;
 
35
"ABC" REGEXP BINARY NULL
 
36
NULL
 
37
CREATE TABLE t1(a INT, b CHAR(4));
 
38
INSERT INTO t1 VALUES (1, '6.1'), (1, '7.0'), (1, '8.0');
 
39
SET @stmt1="SELECT a FROM t1 WHERE a=1 AND '7.0' REGEXP b LIMIT 1";
 
40
EXECUTE @stmt1;
 
41
a
 
42
EXECUTE @stmt1;
 
43
a
 
44
EXECUTE @stmt1;
 
45
a
 
46
EXECUTE @stmt1;
 
47
a
 
48
DROP TABLE t1;