Skip to content

Commit

Permalink
Update advocacy_docs/edb-postgres-ai/analytics/external_tables.mdx
Browse files Browse the repository at this point in the history
Co-authored-by: Artjoms Iskovs <[email protected]>
  • Loading branch information
djw-m and mildbyte committed Dec 11, 2024
1 parent 1f16500 commit 441bb23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The following example creates an external table that references a Delta Lake Tab
CREATE TABLE public.customer () USING PGAA WITH (pgaa.storage_location = 'sample-data', pgaa.path = 'tpch_sf_1/customer');
```

Note that the schema is not defined in the `CREATE TABLE` statement. The pgaa extension expects the schema to be defined in the storage location, and the schema itself is derived from the schema stored at the path specified in the `pgaa.path` option. The pgaa extension will infer the best Postgres-equivelant data types for the columns in the Delta Table.
Note that the schema is not defined in the `CREATE TABLE` statement. The pgaa extension expects the schema to be defined in the storage location, and the schema itself is derived from the schema stored at the path specified in the `pgaa.path` option. The pgaa extension will infer the best Postgres-equivalent data types for the columns in the Delta Table.

## Querying an External Table

Expand Down

0 comments on commit 441bb23

Please sign in to comment.