#At file:///work2/5.0/mysql-5.0-bugteam-A/
2684 Matthias Leich 2008-10-02
Fix for Bug#38427 "Data too long" in some configurations,
tests "<ENGINE>_func_view" fail
modified:
mysql-test/suite/funcs_1/views/func_view.inc
=== modified file 'mysql-test/suite/funcs_1/views/func_view.inc'
--- a/mysql-test/suite/funcs_1/views/func_view.inc 2008-06-16 18:39:58 +0000
+++ b/mysql-test/suite/funcs_1/views/func_view.inc 2008-10-02 11:47:16 +0000
@@ -157,10 +157,16 @@ DROP VIEW IF EXISTS v1;
--disable_query_log
# Storage for the SELECTs to be used for the VIEW definition
+# Attention: my_select must be no too small because a statement like
+# SELECT LOAD_FILE(< file in MYSQLTEST_VARDIR >)
+# AS my_col,
+# id FROM t1_values';
+# might be a very long
+# Bug#38427 "Data too long" ... tests "<ENGINE>_func_view" fail
CREATE TABLE t1_selects
(
id BIGINT AUTO_INCREMENT,
- my_select VARCHAR(200) NOT NULL,
+ my_select VARCHAR(1000) NOT NULL,
disable_result ENUM('Yes','No') NOT NULL default 'No',
PRIMARY KEY(id),
UNIQUE (my_select)
| Thread |
|---|
| • bzr commit into mysql-5.1-bugteam branch (Matthias.Leich:2684) Bug#38427 | Matthias Leich | 2 Oct |