This is an automated email from the ASF dual-hosted git repository. awong pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 8124d94825e3573a95d87d48d2c3326eb499cab3 Author: lingbin <[email protected]> AuthorDate: Thu Aug 22 16:17:46 2019 +0800 [docs]: Fix bad markdown formatting in tablet.md Use '```' for code block Change-Id: I06e04031c8b817b3a3d7f771705c85a161cbb08d Reviewed-on: http://gerrit.cloudera.org:8080/14120 Tested-by: Kudu Jenkins Reviewed-by: Andrew Wong <[email protected]> --- docs/design-docs/tablet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/design-docs/tablet.md b/docs/design-docs/tablet.md index d4656be..fb2d0fe 100644 --- a/docs/design-docs/tablet.md +++ b/docs/design-docs/tablet.md @@ -135,12 +135,12 @@ Note that "mutation" in this case can be one of three types: As a concrete example, consider the following sequence on a table with schema (key STRING, val UINT32): - +``` INSERT INTO t VALUES ("row", 1); [timestamp 1] UPDATE t SET val = 2 WHERE key = "row"; [timestamp 2] DELETE FROM t WHERE key = "row"; [timestamp 3] INSERT INTO t VALUES ("row", 3); [timestamp 4] - +``` This would result in the following structure in the MemRowSet: ``` +-----------------------------------+
