Skip to content

Commit

Permalink
Merge pull request #3426 from szarnyasg/nits-20240823c
Browse files Browse the repository at this point in the history
More quote fixes
  • Loading branch information
szarnyasg authored Aug 23, 2024
2 parents e0542a4 + 993501f commit 791f3c2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/guides/python/ibis.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/sql_editors/dbeaver.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ title: DBeaver SQL IDE

<img src="/images/guides/DBeaver_connection_settings_path.png" alt="DBeaver Set Path" title="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.

<img src="/images/guides/DBeaver_connection_settings_test_connection.png" alt="DBeaver Test Connection" title="DBeaver Test Connection"/>

Expand Down
4 changes: 2 additions & 2 deletions docs/sql/functions/bitstring.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`

Expand Down Expand Up @@ -154,5 +154,5 @@ These aggregate functions are available for `BIT` type.

<div class="nostroke_table"></div>

| **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)` |
4 changes: 2 additions & 2 deletions docs/sql/functions/timestamptz.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion docs/sql/statements/create_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 791f3c2

Please sign in to comment.