Unbreak the build: Pull RowChangelistEncoder::get_type() Misordered push of 3c68deacc05f6b5a9b82522baa38e046744b1815 caused the build to fail. This just pulls that method in.
Change-Id: If83f7d26ecc5632b6645b1aec927580f202f7d85 Reviewed-on: http://gerrit.cloudera.org:8080/5013 Reviewed-by: Jean-Daniel Cryans <[email protected]> Tested-by: Kudu Jenkins Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/ef30f1d2 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/ef30f1d2 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/ef30f1d2 Branch: refs/heads/master Commit: ef30f1d2d69350943d65ebd88389bea7af4ac045 Parents: 4a6493d Author: David Alves <[email protected]> Authored: Tue Nov 8 16:22:31 2016 -0800 Committer: David Ribeiro Alves <[email protected]> Committed: Wed Nov 9 01:00:55 2016 +0000 ---------------------------------------------------------------------- src/kudu/common/row_changelist.h | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/ef30f1d2/src/kudu/common/row_changelist.h ---------------------------------------------------------------------- diff --git a/src/kudu/common/row_changelist.h b/src/kudu/common/row_changelist.h index 480c374..d922356 100644 --- a/src/kudu/common/row_changelist.h +++ b/src/kudu/common/row_changelist.h @@ -263,6 +263,10 @@ class RowChangeListDecoder { // the contiguous in-memory row format. Status GetReinsertedRowSlice(const Schema& schema, Slice* s) const; + const RowChangeList::ChangeType get_type() const { + return type_; + } + // Append an entry to *column_ids for each column that is updated // in this RCL. // This 'consumes' the remainder of the encoded RowChangeList.
