diff options
author | Mattias Jonsson <mattias.jonsson@sun.com> | 2008-11-12 13:36:53 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@sun.com> | 2008-11-12 13:36:53 +0100 |
commit | d9b7163a090de46774f3e0b3b32caf53428b443d (patch) | |
tree | 834e989af9a9fe483ba349bda96272979c7c4dae /win | |
parent | 0d365960abff290d5e05fef066640e64ee7f3951 (diff) | |
download | mariadb-git-d9b7163a090de46774f3e0b3b32caf53428b443d.tar.gz |
Bug#38784: Mysql server crash if table is altered with partition changes.
Occurred with EXTRA_DEBUG on windows.
Problem was insufficient length of a local variable that stored path names.
Solution was to use the correct length.
CMakeLists.txt:
Bug#38784: Mysql server crash if table is altered with partition changes.
Added support for EXTRA_DEBUG
sql/sql_partition.cc:
Bug#38784: Mysql server crash if table is altered with partition changes.
Changed from FN_LEN to FN_REFLEN since the variable was use for paths,
not filenames without path.
win/configure.js:
Bug#38784: Mysql server crash if table is altered with partition changes.
Added support for EXTRA_DEBUG
Diffstat (limited to 'win')
-rw-r--r-- | win/configure.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win/configure.js b/win/configure.js index c86ec0cf47c..ac51b15b9f0 100644 --- a/win/configure.js +++ b/win/configure.js @@ -48,6 +48,7 @@ try case "__NT__": case "CYBOZU": case "EMBED_MANIFESTS": + case "EXTRA_DEBUG": case "WITH_EMBEDDED_SERVER": configfile.WriteLine("SET (" + args.Item(i) + " TRUE)"); break; |