summaryrefslogtreecommitdiff
path: root/storage/connect/filamzip.cpp
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2013-03-25 11:07:45 +0100
committerOlivier Bertrand <bertrandop@gmail.com>2013-03-25 11:07:45 +0100
commitcd9e1938ef503b423a652aff0b5d1e0a76361fc6 (patch)
treed29da2e98a25aebacecef85bc16d721bd9afd8fb /storage/connect/filamzip.cpp
parent8f0ae6322c40aa339f9362f59715440952c34a3e (diff)
downloadmariadb-git-cd9e1938ef503b423a652aff0b5d1e0a76361fc6.tar.gz
- Add a new table option SEPINDEX (not used yet) and remove an unused
parameter to all catalog info functions. modified: storage/connect/catalog.h storage/connect/filamvct.cpp storage/connect/filamzip.cpp storage/connect/ha_connect.cc storage/connect/mycat.cc storage/connect/mycat.h storage/connect/reldef.cpp storage/connect/reldef.h storage/connect/tabdos.cpp storage/connect/tabfmt.cpp storage/connect/tabmul.cpp storage/connect/tabmysql.cpp storage/connect/tabodbc.cpp storage/connect/tabsys.cpp storage/connect/tabtbl.cpp storage/connect/tabvct.cpp storage/connect/tabwmi.cpp storage/connect/tabxml.cpp storage/connect/xindex.cpp
Diffstat (limited to 'storage/connect/filamzip.cpp')
-rw-r--r--storage/connect/filamzip.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/connect/filamzip.cpp b/storage/connect/filamzip.cpp
index 19e8b200ed1..4f1a02d8257 100644
--- a/storage/connect/filamzip.cpp
+++ b/storage/connect/filamzip.cpp
@@ -614,8 +614,8 @@ int ZBKFAM::DeleteRecords(PGLOBAL g, int irc)
defp->SetBlock(0);
defp->SetLast(Nrec);
- if (!cat->SetIntCatInfo(name, "Blocks", 0) ||
- !cat->SetIntCatInfo(name, "Last", 0)) {
+ if (!cat->SetIntCatInfo("Blocks", 0) ||
+ !cat->SetIntCatInfo("Last", 0)) {
sprintf(g->Message, MSG(UPDATE_ERROR), "Header");
return RC_FX;
} else
@@ -653,8 +653,8 @@ void ZBKFAM::CloseTableFile(PGLOBAL g)
if (rc != RC_FX) {
defp->SetBlock(Block);
defp->SetLast(Last);
- cat->SetIntCatInfo(name, "Blocks", Block);
- cat->SetIntCatInfo(name, "Last", Last);
+ cat->SetIntCatInfo("Blocks", Block);
+ cat->SetIntCatInfo("Last", Last);
} // endif
gzclose(Zfile);