Merge pull request #28880 from taosdata/yu285-patch-23

docs/ correct the "drop database" to "drop stream"
This commit is contained in:
Shengliang Guan 2024-11-29 18:38:15 +08:00 committed by GitHub
commit ee1b3359c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ flush database stream_dest_db; ---- 流计算写入数据的超级表所在的
```sql
create stream streams1 into test1.streamst as select _wstart, count(a) c1 from test.st interval(1s) ;
drop database streams1;
drop stream streams1;
flush database test;
flush database test1;
```