From 993501fdf706813bbedce0908b2dbce2b3d4bc3a Mon Sep 17 00:00:00 2001 From: Gabor Szarnyas Date: Fri, 23 Aug 2024 05:50:35 +0200 Subject: [PATCH] More quote fixes --- docs/guides/python/ibis.md | 2 +- docs/guides/sql_editors/dbeaver.md | 2 +- docs/sql/functions/bitstring.md | 4 ++-- docs/sql/functions/timestamptz.md | 4 ++-- docs/sql/statements/create_table.md | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/guides/python/ibis.md b/docs/guides/python/ibis.md index 0cc2e10c13e..8b333353ea7 100644 --- a/docs/guides/python/ibis.md +++ b/docs/guides/python/ibis.md @@ -528,7 +528,7 @@ penguins.group_by("species").aggregate() └───────────┘ ``` -We grouped by the `species` column and handed it an "empty" aggregate command. The result of that is a column of the unique values in the `species` column. +We grouped by the `species` column and handed it an “empty” aggregate command. The result of that is a column of the unique values in the `species` column. If we add a second column to the `group_by`, we'll get each unique pairing of the values in those columns. diff --git a/docs/guides/sql_editors/dbeaver.md b/docs/guides/sql_editors/dbeaver.md index be379020c31..22561e5898a 100644 --- a/docs/guides/sql_editors/dbeaver.md +++ b/docs/guides/sql_editors/dbeaver.md @@ -22,7 +22,7 @@ title: DBeaver SQL IDE DBeaver Set Path -5. Click "Test Connection". This will then prompt you to install the DuckDB JDBC driver. If you are not prompted, see alternative driver installation instructions below. +5. Click “Test Connection”. This will then prompt you to install the DuckDB JDBC driver. If you are not prompted, see alternative driver installation instructions below. DBeaver Test Connection diff --git a/docs/sql/functions/bitstring.md b/docs/sql/functions/bitstring.md index 5840a015c28..ba63b8468d2 100644 --- a/docs/sql/functions/bitstring.md +++ b/docs/sql/functions/bitstring.md @@ -118,7 +118,7 @@ These aggregate functions are available for `BIT` type. | [`bit_or(arg)`](#bit_orarg) | Returns the bitwise OR operation performed on all bitstrings in a given expression. | | [`bit_xor(arg)`](#bit_xorarg) | Returns the bitwise XOR operation performed on all bitstrings in a given expression. | | [`bitstring_agg(arg)`](#bitstring_aggarg) | Returns a bitstring with bits set for each distinct position defined in `arg`. | -| [`bitstring_agg(arg, min, max)`](#bitstring_aggarg-min-max) | Returns a bitstring with bits set for each distinct position defined in `arg`. All positions must be within the range [`min`, `max`] or an "Out of Range Error" will be thrown. | +| [`bitstring_agg(arg, min, max)`](#bitstring_aggarg-min-max) | Returns a bitstring with bits set for each distinct position defined in `arg`. All positions must be within the range [`min`, `max`] or an `Out of Range Error` will be thrown. | #### `bit_and(arg)` @@ -154,5 +154,5 @@ These aggregate functions are available for `BIT` type.
-| **Description** | Returns a bitstring with bits set for each distinct position defined in `arg`. All positions must be within the range [`min`, `max`] or an "Out of Range Error" will be thrown. | +| **Description** | Returns a bitstring with bits set for each distinct position defined in `arg`. All positions must be within the range [`min`, `max`] or an `Out of Range Error` will be thrown. | | **Example** | `bitstring_agg(A, 1, 42)` | diff --git a/docs/sql/functions/timestamptz.md b/docs/sql/functions/timestamptz.md index fd22953ff6d..98aeb42c6f5 100644 --- a/docs/sql/functions/timestamptz.md +++ b/docs/sql/functions/timestamptz.md @@ -399,7 +399,7 @@ The table below shows the available table functions for `TIMESTAMP WITH TIME ZON ## ICU Timestamp Without Time Zone Functions The table below shows the ICU provided scalar functions that operate on plain `TIMESTAMP` values. -These functions assume that the `TIMESTAMP` is a "local timestamp". +These functions assume that the `TIMESTAMP` is a “local timestamp”. A local timestamp is effectively a way of encoding the part values from a time zone into a single value. They should be used with caution because the produced values can contain gaps and ambiguities thanks to daylight savings time. @@ -485,7 +485,7 @@ TIMESTAMP WITH TIME ZONE '2001-02-16 20:38:40-05' AT TIME ZONE 'America/Denver'; ## Infinities Functions applied to infinite dates will either return the same infinite dates -(e.g, `greatest`) or `NULL` (e.g., `date_part`) depending on what "makes sense". +(e.g, `greatest`) or `NULL` (e.g., `date_part`) depending on what “makes sense”. In general, if the function needs to examine the parts of the infinite temporal value, the result will be `NULL`. diff --git a/docs/sql/statements/create_table.md b/docs/sql/statements/create_table.md index 406036d9870..eadad7c3ed8 100644 --- a/docs/sql/statements/create_table.md +++ b/docs/sql/statements/create_table.md @@ -111,7 +111,7 @@ CREATE TABLE IF NOT EXISTS t1 (i INTEGER, j INTEGER); ## `CREATE TABLE ... AS SELECT` (CTAS) -DuckDB supports the `CREATE TABLE ... AS SELECT` syntax, also known as "CTAS": +DuckDB supports the `CREATE TABLE ... AS SELECT` syntax, also known as “CTAS”: ```sql CREATE TABLE nums AS