summaryrefslogtreecommitdiff
path: root/mysql-test/r/show_check.result
diff options
context:
space:
mode:
authorSachin Setiya <sachin.setiya@mariadb.com>2017-12-14 19:17:27 +0530
committerSachin Setiya <sachin.setiya@mariadb.com>2017-12-15 02:41:52 +0530
commit0bc3c0fbc8d2dde151ab486c204075251a929c35 (patch)
treeb23637433eba278e3196e9236b5d552780c42bb7 /mysql-test/r/show_check.result
parentc90db2c8beed5aba00a348fb4854d809c560501e (diff)
downloadmariadb-git-0bc3c0fbc8d2dde151ab486c204075251a929c35.tar.gz
mysqldump fix for invisible column
Actually there are 2 issues in the case of invisible columns 1st `select fields from t1` will have more fields then `select * from t1`. So instead of `select * from t1` we are using `select a,b,invisible from t1` these fields are supplied from `select fields from t1`. 2nd We are using --complete-insert when we detect that this table is using invisible columns.
Diffstat (limited to 'mysql-test/r/show_check.result')
-rw-r--r--mysql-test/r/show_check.result24
1 files changed, 2 insertions, 22 deletions
diff --git a/mysql-test/r/show_check.result b/mysql-test/r/show_check.result
index d17469abae5..af0fadb4038 100644
--- a/mysql-test/r/show_check.result
+++ b/mysql-test/r/show_check.result
@@ -1206,26 +1206,6 @@ DROP TABLE t1;
DROP VIEW v1;
DROP PROCEDURE p1;
DROP FUNCTION f1;
-set names koi8r;
-DROP DATABASE IF EXISTS mysqltest1;
-CREATE DATABASE mysqltest1;
-use mysqltest1;
-CREATE TABLE t1(колонка1 INT);
-
----> Dumping mysqltest1 to outfile1
-
-
-DROP DATABASE mysqltest1;
-
-
----> Restoring mysqltest1...
-SHOW CREATE TABLE mysqltest1.t1;
-Table Create Table
-t1 CREATE TABLE `t1` (
- `колонка1` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1
-DROP DATABASE mysqltest1;
-use test;
flush status;
show variables like "log_queries_not_using_indexes";
Variable_name Value
@@ -1273,8 +1253,8 @@ PRIMARY KEY (Codigo)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
show create table t1;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
-def Table 253 64 2 N 1 39 7
-def Create Table 253 1024 458 N 1 39 7
+def Table 253 192 2 N 1 39 33
+def Create Table 253 3072 458 N 1 39 33
Table Create Table
t1 CREATE TABLE `t1` (
`Codigo` int(10) unsigned NOT NULL AUTO_INCREMENT,