Commit 4aef6a69 authored by Olivier Bertrand's avatar Olivier Bertrand

- Update test results impacted by using type in lower case

modified:
  mysql-test/suite/connect/r/bin.result
  mysql-test/suite/connect/r/csv.result
  mysql-test/suite/connect/r/dbf.result
  mysql-test/suite/connect/r/fix.result
  mysql-test/suite/connect/r/general.result
  mysql-test/suite/connect/r/ini.result
  mysql-test/suite/connect/r/null.result
  mysql-test/suite/connect/r/upd.result
  mysql-test/suite/connect/r/vec.result
  mysql-test/suite/connect/r/xml.result
parent b1031b23
...@@ -8,7 +8,7 @@ user() ...@@ -8,7 +8,7 @@ user()
user@localhost user@localhost
CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=BIN; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=BIN;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.BIN Warning 1105 No file name. Table will use t1.bin
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
SELECT * FROM t1; SELECT * FROM t1;
a a
......
...@@ -8,7 +8,7 @@ user() ...@@ -8,7 +8,7 @@ user()
user@localhost user@localhost
CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=CSV; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=CSV;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.CSV Warning 1105 No file name. Table will use t1.csv
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
SELECT * FROM t1; SELECT * FROM t1;
a a
......
...@@ -8,7 +8,7 @@ user() ...@@ -8,7 +8,7 @@ user()
user@localhost user@localhost
CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=DBF; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=DBF;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.DBF Warning 1105 No file name. Table will use t1.dbf
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
SELECT * FROM t1; SELECT * FROM t1;
a a
......
...@@ -8,7 +8,7 @@ user() ...@@ -8,7 +8,7 @@ user()
user@localhost user@localhost
CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=FIX; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=FIX;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.FIX Warning 1105 No file name. Table will use t1.fix
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
SELECT * FROM t1; SELECT * FROM t1;
a a
......
...@@ -5,7 +5,7 @@ CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=NON_EXISTING; ...@@ -5,7 +5,7 @@ CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=NON_EXISTING;
ERROR HY000: Unsupported table type NON_EXISTING ERROR HY000: Unsupported table type NON_EXISTING
CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=FIX; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=FIX;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.FIX Warning 1105 No file name. Table will use t1.fix
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
SELECT * FROM t1; SELECT * FROM t1;
a a
......
...@@ -8,7 +8,7 @@ user() ...@@ -8,7 +8,7 @@ user()
user@localhost user@localhost
CREATE TABLE t1 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL) ENGINE=CONNECT TABLE_TYPE=INI; CREATE TABLE t1 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL) ENGINE=CONNECT TABLE_TYPE=INI;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.INI Warning 1105 No file name. Table will use t1.ini
INSERT INTO t1 VALUES ('sec1','val1'); INSERT INTO t1 VALUES ('sec1','val1');
SELECT * FROM t1; SELECT * FROM t1;
sec val sec val
...@@ -303,7 +303,7 @@ DROP TABLE t1; ...@@ -303,7 +303,7 @@ DROP TABLE t1;
CREATE TABLE t1 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL) CREATE TABLE t1 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL)
ENGINE=CONNECT TABLE_TYPE=INI; ENGINE=CONNECT TABLE_TYPE=INI;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.INI Warning 1105 No file name. Table will use t1.ini
INSERT INTO t1 VALUES ('sec1','val1'),('sec2','val2'); INSERT INTO t1 VALUES ('sec1','val1'),('sec2','val2');
SELECT sec AS s, val AS v FROM t1; SELECT sec AS s, val AS v FROM t1;
s v s v
...@@ -313,7 +313,7 @@ DROP TABLE t1; ...@@ -313,7 +313,7 @@ DROP TABLE t1;
CREATE TABLE t1 (sec2 CHAR(10) NOT NULL FLAG=1, val2 CHAR(10) NOT NULL) CREATE TABLE t1 (sec2 CHAR(10) NOT NULL FLAG=1, val2 CHAR(10) NOT NULL)
ENGINE=CONNECT TABLE_TYPE=INI; ENGINE=CONNECT TABLE_TYPE=INI;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.INI Warning 1105 No file name. Table will use t1.ini
INSERT INTO t1 VALUES ('sec1','val11'),('sec2','val22'); INSERT INTO t1 VALUES ('sec1','val11'),('sec2','val22');
SELECT sec2 AS s, val2 AS v FROM t1; SELECT sec2 AS s, val2 AS v FROM t1;
s v s v
...@@ -330,11 +330,11 @@ DROP TABLE t1; ...@@ -330,11 +330,11 @@ DROP TABLE t1;
CREATE TABLE t1 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL) CREATE TABLE t1 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL)
ENGINE=CONNECT TABLE_TYPE=INI; ENGINE=CONNECT TABLE_TYPE=INI;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.INI Warning 1105 No file name. Table will use t1.ini
CREATE TABLE t2 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL) CREATE TABLE t2 (sec CHAR(10) NOT NULL FLAG=1, val CHAR(10) NOT NULL)
ENGINE=CONNECT TABLE_TYPE=INI; ENGINE=CONNECT TABLE_TYPE=INI;
Warnings: Warnings:
Warning 1105 No file name. Table will use t2.INI Warning 1105 No file name. Table will use t2.ini
INSERT INTO t1 VALUES('1sec1','1val1'),('1sec2','1val2'); INSERT INTO t1 VALUES('1sec1','1val1'),('1sec2','1val2');
INSERT INTO t2 VALUES('2sec1','2val1'),('2sec2','2val2'); INSERT INTO t2 VALUES('2sec1','2val1'),('2sec2','2val2');
SELECT sec AS s, val AS v FROM t1; SELECT sec AS s, val AS v FROM t1;
......
...@@ -47,7 +47,7 @@ CREATE TABLE t1 ...@@ -47,7 +47,7 @@ CREATE TABLE t1
`key` char(12) `key` char(12)
) ENGINE=CONNECT TABLE_TYPE=INI; ) ENGINE=CONNECT TABLE_TYPE=INI;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.INI Warning 1105 No file name. Table will use t1.ini
INSERT INTO t1(sec) values('S1'); INSERT INTO t1(sec) values('S1');
SELECT * FROM t1; SELECT * FROM t1;
sec key sec key
......
...@@ -61,7 +61,7 @@ END// ...@@ -61,7 +61,7 @@ END//
CREATE TABLE t1 ENGINE=connect AS SELECT * FROM employee; CREATE TABLE t1 ENGINE=connect AS SELECT * FROM employee;
Warnings: Warnings:
Warning 1105 No table_type. Was set to DOS Warning 1105 No table_type. Was set to DOS
Warning 1105 No file name. Table will use t1.DOS Warning 1105 No file name. Table will use t1.dos
CALL test.tst_up(); CALL test.tst_up();
serialno name sex title manager department secretary salary serialno name sex title manager department secretary salary
74200 BANCROFT 2 SALESMAN 70012 0318 24888 9600.00 74200 BANCROFT 2 SALESMAN 70012 0318 24888 9600.00
...@@ -159,7 +159,7 @@ serialno name sex title manager department secretary salary ...@@ -159,7 +159,7 @@ serialno name sex title manager department secretary salary
CREATE TABLE t1 ENGINE=connect mapped=yes AS SELECT * FROM employee; CREATE TABLE t1 ENGINE=connect mapped=yes AS SELECT * FROM employee;
Warnings: Warnings:
Warning 1105 No table_type. Was set to DOS Warning 1105 No table_type. Was set to DOS
Warning 1105 No file name. Table will use t1.DOS Warning 1105 No file name. Table will use t1.dos
CALL test.tst_up(); CALL test.tst_up();
serialno name sex title manager department secretary salary serialno name sex title manager department secretary salary
74200 BANCROFT 2 SALESMAN 70012 0318 24888 9600.00 74200 BANCROFT 2 SALESMAN 70012 0318 24888 9600.00
......
...@@ -8,7 +8,7 @@ user() ...@@ -8,7 +8,7 @@ user()
user@localhost user@localhost
CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=VEC MAX_ROWS=100; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=VEC MAX_ROWS=100;
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.VEC Warning 1105 No file name. Table will use t1.vec
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
SELECT * FROM t1; SELECT * FROM t1;
a a
......
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.XML Warning 1105 No file name. Table will use t1.xml
# #
# Beginning of grant.inc # Beginning of grant.inc
# #
...@@ -10,7 +10,7 @@ user() ...@@ -10,7 +10,7 @@ user()
user@localhost user@localhost
CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=XML OPTION_LIST='xmlsup=libxml2,rownode=row'; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=XML OPTION_LIST='xmlsup=libxml2,rownode=row';
Warnings: Warnings:
Warning 1105 No file name. Table will use t1.XML Warning 1105 No file name. Table will use t1.xml
INSERT INTO t1 VALUES (10); INSERT INTO t1 VALUES (10);
SELECT * FROM t1; SELECT * FROM t1;
a a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment