Skip to content

Commit 224e8bb

Browse files
authored
Clarify multiple statements with SparkSQL (#4214)
* clarify multiple statements with SparkSQL * fix style
1 parent 07bad74 commit 224e8bb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/integrations/data-ingestion/apache-spark/spark-native-connector.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,9 +476,15 @@ ClickHouse.
476476
Spark SQL allows you to write queries exactly as you would in ClickHouse,
477477
so you can directly execute commands such as CREATE TABLE, TRUNCATE, and more - without modification, for instance:
478478

479-
```sql
479+
note:::
480+
When using Spark SQL, only one statement can be executed at a time.
481+
:::
480482

483+
```sql
481484
USE clickhouse;
485+
```
486+
487+
```sql
482488

483489
CREATE TABLE test_db.tbl_sql (
484490
create_time TIMESTAMP NOT NULL,

0 commit comments

Comments
 (0)