This is an automated email from the ASF dual-hosted git repository.
joshfell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 3b1aaf1f72 Fix code typo Docs ObjectStorage Extrenal Integrations
example (#36261)
3b1aaf1f72 is described below
commit 3b1aaf1f7247fbaf91e1d064596f0809421bd169
Author: Tamara Janina Fingerlin <[email protected]>
AuthorDate: Sun Dec 17 05:18:38 2023 +0100
Fix code typo Docs ObjectStorage Extrenal Integrations example (#36261)
* Fix code typo ObjectStorage Extrenal Integrations example
* add ; to make it prettier
---
docs/apache-airflow/core-concepts/objectstorage.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/apache-airflow/core-concepts/objectstorage.rst
b/docs/apache-airflow/core-concepts/objectstorage.rst
index d72a734293..f5b113a861 100644
--- a/docs/apache-airflow/core-concepts/objectstorage.rst
+++ b/docs/apache-airflow/core-concepts/objectstorage.rst
@@ -321,4 +321,4 @@ are used to connect to s3 and a parquet file, indicated by
a ``ObjectStoragePath
path = ObjectStoragePath("s3://my-bucket/my-table.parquet",
conn_id="aws_default")
conn = duckdb.connect(database=":memory:")
conn.register_filesystem(path.fs)
- conn.execute(f"CREATE OR REPLACE TABLE my_table AS SELECT * FROM
read_parquet('{path}")
+ conn.execute(f"CREATE OR REPLACE TABLE my_table AS SELECT * FROM
read_parquet('{path}');")