diff options
author | unknown <serg@serg.mylan> | 2004-11-28 17:30:52 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-28 17:30:52 +0100 |
commit | 63c3ab1e6cd763eb2829f6de037c1c7c62f8573e (patch) | |
tree | a130783519de262f0ac6ffd9e96fc7e77c03c2b2 /mysql-test/t | |
parent | d2c7736c59403d8df8029773c3ea70202b27946b (diff) | |
download | mariadb-git-63c3ab1e6cd763eb2829f6de037c1c7c62f8573e.tar.gz |
limit Max_data_length in 'show table status'
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/view.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test index 92747323336..1af95d8c370 100644 --- a/mysql-test/t/view.test +++ b/mysql-test/t/view.test @@ -19,7 +19,7 @@ create temporary table t1 (a int, b int); create view v1 (c) as select b+1 from t1; drop table t1; -create table t1 (a int, b int); +create table t1 (a int, b int) max_rows=1000000; insert into t1 values (1,2), (1,3), (2,4), (2,5), (3,10); #view with variable |