diff --git a/_posts/2024-04-02-duckplyr.md b/_posts/2024-04-02-duckplyr.md index be21c5c09b6..79de08c0a97 100644 --- a/_posts/2024-04-02-duckplyr.md +++ b/_posts/2024-04-02-duckplyr.md @@ -1,6 +1,6 @@ --- layout: post -title: "duckplyr: dplyr powered by DuckDB" +title: "duckplyr: dplyr Powered by DuckDB" author: Hannes Mühleisen avatar: "_site/images/team/hannes_muehleisen.jpg" thumb: "/images/blog/thumbs/240402.svg" diff --git a/docs/extensions/spatial.md b/docs/extensions/spatial.md index 66d9bb78b44..aba08535aa7 100644 --- a/docs/extensions/spatial.md +++ b/docs/extensions/spatial.md @@ -286,7 +286,7 @@ Similarly there is a `.osm.pbf` replacement scan for `ST_ReadOsm`. ## Spatial Copy Functions -Much like the `ST_Read` table function the spatial extension provides a GDAL based `COPY` function to export duckdb tables to different geospatial vector formats. +Much like the `ST_Read` table function the spatial extension provides a GDAL based `COPY` function to export DuckDB tables to different geospatial vector formats. For example to export a table to a GeoJSON file, with generated bounding boxes, you can use the following query: ```sql diff --git a/docs/sql/duckdb_table_functions.md b/docs/sql/duckdb_table_functions.md index 081cfc2b3bc..c33a27577d4 100644 --- a/docs/sql/duckdb_table_functions.md +++ b/docs/sql/duckdb_table_functions.md @@ -80,7 +80,7 @@ The `duckdb_constraints()` function provides metadata about the constraints avai ## `duckdb_databases` The `duckdb_databases()` function lists the databases that are accessible from within the current DuckDB process. -Apart from the database associated at startup, the list also includes databases that were [attached](statements/attach) later on to the duckdb process +Apart from the database associated at startup, the list also includes databases that were [attached](statements/attach) later on to the DuckDB process | Column | Description | Type | |:-|:---|:-| diff --git a/docs/sql/statements/create_type.md b/docs/sql/statements/create_type.md index fcdcf87a612..5669b89f36b 100644 --- a/docs/sql/statements/create_type.md +++ b/docs/sql/statements/create_type.md @@ -23,8 +23,10 @@ CREATE TYPE x_index AS INTEGER;
-`CREATE TYPE` defines a new data type available to this duckdb instance. These new -types can then be inspected in the `duckdb_types` table. +The `CREATE TYPE` clause defines a new data type available to this DuckDB instance. +These new types can then be inspected in the [`duckdb_types` table](../duckdb_table_functions#duckdb_types). -Extending these custom types to support custom operators (such as the PostgreSQL `&&` operator) -would require C++ development. To do this, create an [extension](../../extensions/overview). +## Limitations + +Extending types to support custom operators (such as the PostgreSQL `&&` operator) is not possible via plain SQL. +Instead, it requires adding additional C++ code. To do this, create an [extension](../../extensions/overview).