From 11ce35ea6316147f9a4683c20f89c20f6ca63602 Mon Sep 17 00:00:00 2001 From: Olivier Bertrand Date: Fri, 11 Aug 2017 19:06:33 +0200 Subject: [PATCH] Restore tabs. Modified: storage/connect/mysql-test/connect/r/xml2_grant.result and storage/connect/mysql-test/connect/r/xml2_mdev5261.result --- storage/connect/mysql-test/connect/r/xml2_grant.result | 6 +++--- .../connect/mysql-test/connect/r/xml2_mdev5261.result | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/storage/connect/mysql-test/connect/r/xml2_grant.result b/storage/connect/mysql-test/connect/r/xml2_grant.result index 2b41fc45ede51..9eb818bf32f50 100644 --- a/storage/connect/mysql-test/connect/r/xml2_grant.result +++ b/storage/connect/mysql-test/connect/r/xml2_grant.result @@ -1,5 +1,5 @@ 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 # @@ -11,7 +11,7 @@ user() user@localhost CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=XML OPTION_LIST='xmlsup=libxml2,rownode=row'; 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); SELECT * FROM t1; a @@ -83,7 +83,7 @@ DROP VIEW v1; DROP TABLE t1; CREATE TABLE t1 (a INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=XML OPTION_LIST='xmlsup=libxml2,rownode=row'; 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); SELECT user(); user() diff --git a/storage/connect/mysql-test/connect/r/xml2_mdev5261.result b/storage/connect/mysql-test/connect/r/xml2_mdev5261.result index 2217771a3a2d9..23e72c6eb0f57 100644 --- a/storage/connect/mysql-test/connect/r/xml2_mdev5261.result +++ b/storage/connect/mysql-test/connect/r/xml2_mdev5261.result @@ -1,19 +1,19 @@ Warnings: -Warning 1105 No file name. Table will use t1.xml +Warning 1105 No file name. Table will use t1.xml SET NAMES utf8; CREATE TABLE t1 (i INT UNIQUE NOT NULL) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='xt1.xml' OPTION_LIST='xmlsup=libxml2,Rownode=N'; ERROR HY000: Table type XML is not indexable CREATE TABLE t1 (i INT NOT NULL) ENGINE=CONNECT TABLE_TYPE=XML FILE_NAME='xt1.xml' OPTION_LIST='xmlsup=libxml2,Rownode=N'; DESCRIBE t1; -Field Type Null Key Default Extra -i int(11) NO NULL +Field Type Null Key Default Extra +i int(11) NO NULL ALTER TABLE t1 ADD UNIQUE(i); ERROR HY000: Table type XML is not indexable CREATE UNIQUE INDEX i ON t1(i); ERROR HY000: Table type XML is not indexable DESCRIBE t1; -Field Type Null Key Default Extra -i int(11) NO NULL +Field Type Null Key Default Extra +i int(11) NO NULL INSERT INTO t1 VALUES(2),(5),(7); SELECT * FROM t1 WHERE i = 5; i