diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-11-11 18:30:36 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-11-11 18:30:36 +0100 |
commit | 260c0de9188727f3a7ced1e96c7e368bf7a37437 (patch) | |
tree | 33d7f32b3a22b9874ec31688e410459670af98e4 /storage/connect/tabodbc.cpp | |
parent | eca84a9b1837304ce4be50994ef7077b31ccf50c (diff) | |
download | mariadb-git-260c0de9188727f3a7ced1e96c7e368bf7a37437.tar.gz |
- Add (limited) UPDATE/DELETE support to MYSQL type CONNECT tables
modified:
storage/connect/ha_connect.cc
storage/connect/tabmysql.cpp
storage/connect/tabmysql.h
storage/connect/tabodbc.cpp
Diffstat (limited to 'storage/connect/tabodbc.cpp')
-rw-r--r-- | storage/connect/tabodbc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabodbc.cpp b/storage/connect/tabodbc.cpp index e35da989cd2..bb7588e0d66 100644 --- a/storage/connect/tabodbc.cpp +++ b/storage/connect/tabodbc.cpp @@ -602,7 +602,7 @@ int TDBODBC::GetMaxSize(PGLOBAL g) { if (MaxSize < 0) { // Make MariaDB happy - MaxSize = (Mode == MODE_READ) ? 100 : 0; + MaxSize = (Mode == MODE_DELETE) ? 0 : 10; #if 0 // This is unuseful and takes time if (Srcdef) { |