diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2020-05-19 00:05:56 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2020-05-19 00:05:56 +0200 |
commit | 2654ddd2d595c2f8528aafa3af30db90beb0a5b7 (patch) | |
tree | 6216c912107e2cbbbb04325257b65192d5d1717e /storage/connect/tabzip.h | |
parent | f5f9659b1577befed935b41ce36dda91f218c8e9 (diff) | |
download | mariadb-git-2654ddd2d595c2f8528aafa3af30db90beb0a5b7.tar.gz |
- Fix MDEV-22571 and MDEV-22572. Allow multiple ZIP table
and enable using special column in them.
modified: storage/connect/tabzip.cpp
modified: storage/connect/tabzip.h
- Fix some compiler errors
modified: storage/connect/tabcmg.cpp
Diffstat (limited to 'storage/connect/tabzip.h')
-rw-r--r-- | storage/connect/tabzip.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/connect/tabzip.h b/storage/connect/tabzip.h index 32b15281f81..d36e4dc01d0 100644 --- a/storage/connect/tabzip.h +++ b/storage/connect/tabzip.h @@ -48,6 +48,8 @@ public: // Implementation virtual AMT GetAmType(void) {return TYPE_AM_ZIP;} + virtual PCSZ GetFile(PGLOBAL) {return zfn;} + virtual void SetFile(PGLOBAL, PCSZ fn) {zfn = fn;} // Methods virtual PCOL MakeCol(PGLOBAL g, PCOLDEF cdp, PCOL cprec, int n); |