diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2015-01-28 00:19:39 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2015-01-28 00:19:39 +0100 |
commit | 9a2dc7dfed6b56c529b2de865a15929bee2eceaf (patch) | |
tree | 068654f2df5af8f6488a766cf0d8cd2eb4189e78 /storage/connect/tabpivot.h | |
parent | ee5a4c8b33b1a0dda9ef7422730dbe32f6b384a9 (diff) | |
download | mariadb-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/tabpivot.h')
-rw-r--r-- | storage/connect/tabpivot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabpivot.h b/storage/connect/tabpivot.h index d01633906bd..c397af05234 100644 --- a/storage/connect/tabpivot.h +++ b/storage/connect/tabpivot.h @@ -183,7 +183,7 @@ class SRCCOL : public PRXCOL { using PRXCOL::Init; virtual void Reset(void) {} void SetColumn(void); - virtual bool Init(PGLOBAL g); + virtual bool Init(PGLOBAL g, PTDBASE tp); bool CompareLast(void); protected: |