diff options
author | unknown <kaa@polly.local> | 2007-06-12 11:48:43 +0400 |
---|---|---|
committer | unknown <kaa@polly.local> | 2007-06-12 11:48:43 +0400 |
commit | 0c2338e7b93088b904d628ed55850e3c1f44024f (patch) | |
tree | bc45e5e2e88f3faf07a3e03cda16e66b2d464935 /mysql-test/t | |
parent | 46085513c186e84a0acb852a3dea0c603cd3ffdf (diff) | |
parent | c1cfc60c223ad8b616cb333b7efaa90058939efe (diff) | |
download | mariadb-git-0c2338e7b93088b904d628ed55850e3c1f44024f.tar.gz |
Merge polly.local:/home/kaa/src/maint/bug28895/my51-bug28895
into polly.local:/home/kaa/src/maint/mysql-5.1-maint
sql/sql_select.cc:
Auto merged
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/long_tmpdir-master.opt | 1 | ||||
-rw-r--r-- | mysql-test/t/long_tmpdir-master.sh | 3 | ||||
-rw-r--r-- | mysql-test/t/long_tmpdir.test | 9 |
3 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/t/long_tmpdir-master.opt b/mysql-test/t/long_tmpdir-master.opt new file mode 100644 index 00000000000..398abfc4632 --- /dev/null +++ b/mysql-test/t/long_tmpdir-master.opt @@ -0,0 +1 @@ +--tmpdir=$MYSQLTEST_VARDIR/tmp/long_temporary_directory_path_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789 diff --git a/mysql-test/t/long_tmpdir-master.sh b/mysql-test/t/long_tmpdir-master.sh new file mode 100644 index 00000000000..318955fbcca --- /dev/null +++ b/mysql-test/t/long_tmpdir-master.sh @@ -0,0 +1,3 @@ +d="$MYSQLTEST_VARDIR/tmp/long_temporary_directory_path_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789" +test -d "$d" || mkdir "$d" +rm -f "$d"/* diff --git a/mysql-test/t/long_tmpdir.test b/mysql-test/t/long_tmpdir.test new file mode 100644 index 00000000000..cf0bed29918 --- /dev/null +++ b/mysql-test/t/long_tmpdir.test @@ -0,0 +1,9 @@ +# +# Bug #29015: Stack overflow in processing temporary table name when tmpdir path +# is long +# + +create view v1 as select table_name from information_schema.tables; +drop view v1; + +--echo End of 5.0 tests |