diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2014-03-20 12:05:47 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2014-03-20 12:05:47 +0100 |
commit | 7b400a088d049661b9a4dded385ac78923bb0017 (patch) | |
tree | bb3ee7bac4454f66ec6f38cf6683f24bc6c065d4 /storage/connect/valblk.cpp | |
parent | d67ad26b33ea16a3b59215ef967bdd9b89345e04 (diff) | |
parent | e5729127b8a50a0e553fd8b87b2683e4a684dfcc (diff) | |
download | mariadb-git-7b400a088d049661b9a4dded385ac78923bb0017.tar.gz |
- MRR + Block Indexing
modified:
storage/connect/array.h
storage/connect/catalog.h
storage/connect/colblk.cpp
storage/connect/colblk.h
storage/connect/connect.cc
storage/connect/connect.h
storage/connect/domdoc.h
storage/connect/filamap.cpp
storage/connect/filamap.h
storage/connect/filamdbf.h
storage/connect/filamfix.cpp
storage/connect/filamfix.h
storage/connect/filamtxt.cpp
storage/connect/filamtxt.h
storage/connect/filamvct.cpp
storage/connect/filamvct.h
storage/connect/filamzip.cpp
storage/connect/filamzip.h
storage/connect/filter.cpp
storage/connect/filter.h
storage/connect/global.h
storage/connect/ha_connect.cc
storage/connect/ha_connect.h
storage/connect/myconn.h
storage/connect/plgcnx.h
storage/connect/plgdbsem.h
storage/connect/plgdbutl.cpp
storage/connect/plugutil.c
storage/connect/preparse.h
storage/connect/reldef.cpp
storage/connect/reldef.h
storage/connect/tabcol.h
storage/connect/tabdos.cpp
storage/connect/tabdos.h
storage/connect/tabfix.cpp
storage/connect/tabfmt.cpp
storage/connect/tabfmt.h
storage/connect/table.cpp
storage/connect/tabmysql.cpp
storage/connect/tabmysql.h
storage/connect/taboccur.h
storage/connect/tabodbc.h
storage/connect/tabsys.h
storage/connect/tabtbl.h
storage/connect/tabutil.h
storage/connect/tabvct.cpp
storage/connect/tabvct.h
storage/connect/tabwmi.h
storage/connect/tabxml.h
storage/connect/user_connect.cc
storage/connect/user_connect.h
storage/connect/valblk.cpp
storage/connect/valblk.h
storage/connect/value.cpp
storage/connect/value.h
storage/connect/xindex.cpp
storage/connect/xindex.h
storage/connect/xobject.cpp
storage/connect/xobject.h
storage/connect/xtable.h
Diffstat (limited to 'storage/connect/valblk.cpp')
-rw-r--r-- | storage/connect/valblk.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/storage/connect/valblk.cpp b/storage/connect/valblk.cpp index e8da2044a47..49766bbd447 100644 --- a/storage/connect/valblk.cpp +++ b/storage/connect/valblk.cpp @@ -448,7 +448,6 @@ template <> uchar TYPBLK<uchar>::GetTypedValue(PVBLK blk, int n) {return blk->GetUTinyValue(n);} -#if defined(BLK_INDX) /***********************************************************************/ /* Set one value in a block if val is less than the current value. */ /***********************************************************************/ @@ -478,7 +477,6 @@ void TYPBLK<TYPE>::SetMax(PVAL valp, int n) tmin = tval; } // end of SetMax -#endif // BLK_INDX #if 0 /***********************************************************************/ @@ -812,7 +810,6 @@ void CHRBLK::SetValue(PVBLK pv, int n1, int n2) SetNull(n1, b); } // end of SetValue -#if defined(BLK_INDX) /***********************************************************************/ /* Set one value in a block if val is less than the current value. */ /***********************************************************************/ @@ -842,7 +839,6 @@ void CHRBLK::SetMax(PVAL valp, int n) memcpy(bp, vp, Long); } // end of SetMax -#endif // BLK_INDX #if 0 /***********************************************************************/ @@ -1166,7 +1162,6 @@ void STRBLK::SetValue(char *sp, uint len, int n) Strp[n] = p; } // end of SetValue -#if defined(BLK_INDX) /***********************************************************************/ /* Set one value in a block if val is less than the current value. */ /***********************************************************************/ @@ -1194,7 +1189,6 @@ void STRBLK::SetMax(PVAL valp, int n) SetValue(valp, n); } // end of SetMax -#endif // BLK_INDX /***********************************************************************/ /* Move one value from i to j. */ @@ -1335,7 +1329,6 @@ void DATBLK::SetValue(PSZ p, int n) } // end of SetValue -#if defined(BLK_INDX) /* -------------------------- Class MBVALS --------------------------- */ /***********************************************************************/ @@ -1379,7 +1372,6 @@ void MBVALS::Free(void) PlgDBfree(Mblk); Vblk = NULL; } // end of Free -#endif // BLK_INDX /* ------------------------- End of Valblk --------------------------- */ |