MDEV-19785 Storage CONNECT compilation error: unknown type name 'UNZFAM'
Another fail fix: undefined reference to `ZipLoadFile`
This commit is contained in:
parent
41f4f6bea8
commit
e91fb70f99
@ -6681,6 +6681,7 @@ int ha_connect::create(const char *name, TABLE *table_arg,
|
||||
if (trace(1))
|
||||
htrc("xchk=%p createas=%d\n", g->Xchk, g->Createas);
|
||||
|
||||
#if defined(ZIP_SUPPORT)
|
||||
if (options->zipped) {
|
||||
// Check whether the zip entry must be made from a file
|
||||
PCSZ fn = GetListOption(g, "Load", options->oplist, NULL);
|
||||
@ -6710,6 +6711,7 @@ int ha_connect::create(const char *name, TABLE *table_arg,
|
||||
} // endif fn
|
||||
|
||||
} // endif zipped
|
||||
#endif // ZIP_SUPPORT
|
||||
|
||||
// To check whether indexes have to be made or remade
|
||||
if (!g->Xchk) {
|
||||
|
@ -189,9 +189,11 @@ PQRYRES CSVColumns(PGLOBAL g, PCSZ dp, PTOS topt, bool info)
|
||||
htrc("File %s Sep=%c Qot=%c Header=%d maxerr=%d\n",
|
||||
SVP(tdp->Fn), tdp->Sep, tdp->Qot, tdp->Header, tdp->Maxerr);
|
||||
|
||||
#if defined(ZIP_SUPPORT)
|
||||
if (tdp->Zipped)
|
||||
tcvp = new(g)TDBCSV(tdp, new(g)UNZFAM(tdp));
|
||||
else
|
||||
#endif
|
||||
tcvp = new(g) TDBCSV(tdp, new(g) DOSFAM(tdp));
|
||||
|
||||
tcvp->SetMode(MODE_READ);
|
||||
|
Loading…
x
Reference in New Issue
Block a user