diff options
author | kaa@polly.local <> | 2007-06-11 23:06:20 +0400 |
---|---|---|
committer | kaa@polly.local <> | 2007-06-11 23:06:20 +0400 |
commit | 0f5a1e5910d48bb0ef0e21ca8d31a0f7b98f3b4c (patch) | |
tree | aa007a7dd4859ebf329bf46e8d029c34ec9fed68 /mysql-test/r/long_tmpdir.result | |
parent | 35dd1fc53544bcb04cc135ee5358b492cbd0259e (diff) | |
download | mariadb-git-0f5a1e5910d48bb0ef0e21ca8d31a0f7b98f3b4c.tar.gz |
Fix for bug #29015 "Stack overflow in processing temporary table name when tmpdir path is long"
In create_tmp_table() don't set full table path as a table name. Other code assumes table names to not exceed NAME_LEN bytes.
Diffstat (limited to 'mysql-test/r/long_tmpdir.result')
-rw-r--r-- | mysql-test/r/long_tmpdir.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/long_tmpdir.result b/mysql-test/r/long_tmpdir.result new file mode 100644 index 00000000000..7e6dd34ced1 --- /dev/null +++ b/mysql-test/r/long_tmpdir.result @@ -0,0 +1,3 @@ +create view v1 as select table_name from information_schema.tables; +drop view v1; +End of 5.0 tests |