summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-11-28 17:30:52 +0100
committerunknown <serg@serg.mylan>2004-11-28 17:30:52 +0100
commit63c3ab1e6cd763eb2829f6de037c1c7c62f8573e (patch)
treea130783519de262f0ac6ffd9e96fc7e77c03c2b2 /mysql-test/t
parentd2c7736c59403d8df8029773c3ea70202b27946b (diff)
downloadmariadb-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.test2
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