This is an automated email from the ASF dual-hosted git repository.
kerwin 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 2e229527b [doc][spark] fix spark.sql.extensions fully qualified class
name (#1946)
2e229527b is described below
commit 2e229527bc0925d47bc60dca3bc0227e8d733398
Author: hekaifei <[email protected]>
AuthorDate: Wed Sep 6 08:57:12 2023 +0800
[doc][spark] fix spark.sql.extensions fully qualified class name (#1946)
---
docs/content/how-to/querying-tables.md | 2 +-
docs/content/how-to/writing-tables.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/content/how-to/querying-tables.md
b/docs/content/how-to/querying-tables.md
index a22d40e21..5e2abd0ec 100644
--- a/docs/content/how-to/querying-tables.md
+++ b/docs/content/how-to/querying-tables.md
@@ -176,7 +176,7 @@ To enable this needs these configs below:
```text
--conf
spark.sql.catalog.spark_catalog=org.apache.paimon.spark.SparkGenericCatalog
---conf spark.sql.extensions=org.apache.paimon.spark.PaimonSparkSessionExtension
+--conf
spark.sql.extensions=org.apache.paimon.spark.extensions.PaimonSparkSessionExtensions
```
you can use `paimon_incremental_query` in query to extract the incremental
data:
diff --git a/docs/content/how-to/writing-tables.md
b/docs/content/how-to/writing-tables.md
index 07c964261..540f768cc 100644
--- a/docs/content/how-to/writing-tables.md
+++ b/docs/content/how-to/writing-tables.md
@@ -206,7 +206,7 @@ Spark's default overwrite mode is static partition
overwrite. To enable dynamic
```text
--conf
spark.sql.catalog.spark_catalog=org.apache.paimon.spark.SparkGenericCatalog
---conf spark.sql.extensions=org.apache.paimon.spark.PaimonSparkSessionExtension
+--conf
spark.sql.extensions=org.apache.paimon.spark.extensions.PaimonSparkSessionExtensions
```
```sql