You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2019/11/21 03:17:35 UTC

[kudu] 01/02: www: fix typo in schema design page

This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

View the commit online:
https://github.com/apache/kudu/commit/44446b09f2b159c36d56f6a363ff5658ee28a31f

commit 44446b09f2b159c36d56f6a363ff5658ee28a31f
Author: Andrew Wong <aw...@apache.org>
AuthorDate: Wed Nov 20 17:59:43 2019 -0800

    www: fix typo in schema design page
    
    Change-Id: I59e21b09bd9849d1004b306f91112b6ca0ea1165
    Reviewed-on: http://gerrit.cloudera.org:8080/14761
    Reviewed-by: Alexey Serbin <as...@cloudera.com>
    Tested-by: Kudu Jenkins
---
 docs/schema_design.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/schema_design.adoc b/docs/schema_design.adoc
index a0c8405..db12adb 100644
--- a/docs/schema_design.adoc
+++ b/docs/schema_design.adoc
@@ -403,7 +403,7 @@ CREATE TABLE metrics (
     metric STRING NOT NULL,
     time INT64 NOT NULL,
     value DOUBLE NOT NULL,
-    PRIMARY KEY (host, metric, time),
+    PRIMARY KEY (host, metric, time)
 );
 ----