HBASE-7801 Addendum - fix Mutation size

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1467522 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
larsh 2013-04-13 00:03:20 +00:00
parent ffd8cab11b
commit a0aad9686e
1 changed files with 3 additions and 3 deletions

View File

@ -51,8 +51,8 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
2 * ClassSize.REFERENCE +
// Timestamp
1 * Bytes.SIZEOF_LONG +
// writeToWAL
Bytes.SIZEOF_BOOLEAN +
// durability
ClassSize.REFERENCE +
// familyMap
ClassSize.REFERENCE +
// familyMap
@ -341,4 +341,4 @@ public abstract class Mutation extends OperationWithAttributes implements Row, C
}
return row;
}
}
}