[Doc]Fixed syntax error of pre-create partition example (backport #62726) (#62965)

Signed-off-by: megao <jetgm@163.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Co-authored-by: megao <jetgm@163.com>
Co-authored-by: DanRoscigno <dan@roscigno.com>
This commit is contained in:
mergify[bot] 2025-09-11 00:53:35 +00:00 committed by GitHub
parent 15827a307c
commit 853cdaeedf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -263,5 +263,5 @@ INSERT INTO t (event_time)
SELECT DATE_ADD(NOW(), INTERVAL d hour)
FROM table(generate_series(0, 8)) AS g(d);
SHOW PARTITION FROM t;
SHOW PARTITIONS FROM t;
```

View File

@ -263,5 +263,5 @@ INSERT INTO t (event_time)
SELECT DATE_ADD(NOW(), INTERVAL d hour)
FROM table(generate_series(0, 8)) AS g(d);
SHOW PARTITION FROM t;
SHOW PARTITIONS FROM t;
```

View File

@ -274,5 +274,5 @@ INSERT INTO t (event_time)
SELECT DATE_ADD(NOW(), INTERVAL d hour)
FROM table(generate_series(0, 8)) AS g(d);
SHOW PARTITION FROM t;
SHOW PARTITIONS FROM t;
```