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

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


The following commit(s) were added to refs/heads/master by this push:
     new 3b7d5feb84c fix: en doc list partition column must be NOT NULL (#29414)
3b7d5feb84c is described below

commit 3b7d5feb84c06b76f1691593dd76782d151750e4
Author: sunny <[email protected]>
AuthorDate: Wed Jan 3 23:23:38 2024 +0800

    fix: en doc list partition column must be NOT NULL (#29414)
---
 docs/en/docs/data-table/data-partition.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/en/docs/data-table/data-partition.md 
b/docs/en/docs/data-table/data-partition.md
index 3569b6d2ba7..3bcce734023 100644
--- a/docs/en/docs/data-table/data-partition.md
+++ b/docs/en/docs/data-table/data-partition.md
@@ -96,7 +96,7 @@ CREATE TABLE IF NOT EXISTS example_db.example_list_tbl
     `user_id` LARGEINT NOT NULL COMMENT "User ID",
     `date` DATE NOT NULL COMMENT "Date when the data are imported",
     `timestamp` DATETIME NOT NULL COMMENT "Timestamp when the data are 
imported",
-    `city` VARCHAR(20) COMMENT "User location city",
+    `city` VARCHAR(20) NOT NULL COMMENT "User location city",
     `age` SMALLINT COMMENT "User Age",
     `sex` TINYINT COMMENT "User gender",
     `last_visit_date` DATETIME REPLACE DEFAULT "1970-01-01 00:00:00" COMMENT 
"User last visit time",


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to