diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-12-12 01:33:53 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-12-12 01:33:53 +0100 |
commit | a58e4e8af1a43a9597cda0341c3cce80967031c2 (patch) | |
tree | 55c5683e4c68f59dafae68b3242ca6fa2610334d /storage/connect/user_connect.cc | |
parent | 7e8504b52398b9bad607dd8699e7cb54f05142ce (diff) | |
download | mariadb-git-a58e4e8af1a43a9597cda0341c3cce80967031c2.tar.gz |
- Fix (temporarily) bug on odbc_postgresql.test
modified:
storage/connect/mysql-test/connect/t/odbc_postgresql.test
storage/connect/user_connect.cc
Diffstat (limited to 'storage/connect/user_connect.cc')
-rw-r--r-- | storage/connect/user_connect.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/connect/user_connect.cc b/storage/connect/user_connect.cc index d85f11d1950..394655f66d7 100644 --- a/storage/connect/user_connect.cc +++ b/storage/connect/user_connect.cc @@ -95,7 +95,8 @@ bool user_connect::user_init() PDBUSER dup= NULL; // Areasize= 64M because of VEC tables. Should be parameterisable - g= PlugInit(NULL, 67108864); +//g= PlugInit(NULL, 67108864); + g= PlugInit(NULL, 134217728); // 128M because of embedded tests (???) // Check whether the initialization is complete if (!g || !g->Sarea || PlugSubSet(g, g->Sarea, g->Sarea_Size) |