#4729 fix a typo in the handlerton on the mainline that allows one to compile without the compression patch refs[t:4729]

git-svn-id: file:///svn/mysql/tokudb-engine/tokudb-engine@42409 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Rich Prohaska 2013-04-17 00:02:10 -04:00 committed by Yoni Fogel
parent d28cf8f96d
commit 9b28cbff31

View file

@ -6195,7 +6195,7 @@ static inline enum toku_compression_method
row_type_to_compression_method(enum row_type type)
{
switch (type) {
#if defined(ROW_TUYPE_TOKU_UNCOMPRESSED)
#if defined(ROW_TYPE_TOKU_UNCOMPRESSED)
case ROW_TYPE_TOKU_UNCOMPRESSED:
return TOKU_NO_COMPRESSION;
case ROW_TYPE_TOKU_ZLIB: