This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 28dbc2506 [docs] Document the right dropping table behaviour (#880)
28dbc2506 is described below
commit 28dbc25068177b0782f030a3632ba752eff63fec
Author: GuojunLi <[email protected]>
AuthorDate: Wed Apr 12 11:43:39 2023 +0800
[docs] Document the right dropping table behaviour (#880)
---
docs/content/how-to/creating-tables.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docs/content/how-to/creating-tables.md
b/docs/content/how-to/creating-tables.md
index ab8532583..cf72ff320 100644
--- a/docs/content/how-to/creating-tables.md
+++ b/docs/content/how-to/creating-tables.md
@@ -67,6 +67,10 @@ CREATE TABLE MyTable (
{{< /tabs >}}
+{{< hint info >}}
+Inserting jobs on the table should be stopped prior to dropping tables, or
table files couldn't be deleted completely.
+{{< /hint >}}
+
### Partitioned Tables
The following SQL creates a table named `MyTable` with five columns
partitioned by `dt` and `hh`, where `dt`, `hh` and `user_id` are the primary
keys.