summaryrefslogtreecommitdiff
path: root/storage/connect/tabxcl.cpp
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2015-01-28 00:19:39 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2015-01-28 00:19:39 +0100
commit9a2dc7dfed6b56c529b2de865a15929bee2eceaf (patch)
tree068654f2df5af8f6488a766cf0d8cd2eb4189e78 /storage/connect/tabxcl.cpp
parentee5a4c8b33b1a0dda9ef7422730dbe32f6b384a9 (diff)
downloadmariadb-git-9a2dc7dfed6b56c529b2de865a15929bee2eceaf.tar.gz
- Repair the errors due to the PRXCOL Init function that must be called
with 2 parameters. (previously the second one was optional) modified: storage/connect/tabpivot.cpp storage/connect/tabpivot.h storage/connect/tabtbl.cpp storage/connect/tabxcl.cpp
Diffstat (limited to 'storage/connect/tabxcl.cpp')
-rw-r--r--storage/connect/tabxcl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabxcl.cpp b/storage/connect/tabxcl.cpp
index 57f0e1e03b9..0de01927c5a 100644
--- a/storage/connect/tabxcl.cpp
+++ b/storage/connect/tabxcl.cpp
@@ -183,7 +183,7 @@ bool TDBXCL::OpenDB(PGLOBAL g)
/*********************************************************************/
for (PCOL cp = Columns; cp; cp = cp->GetNext())
if (!cp->IsSpecial())
- if (((PPRXCOL)cp)->Init(g))
+ if (((PPRXCOL)cp)->Init(g, NULL))
return TRUE;
/*********************************************************************/