Skip to content

Commit

Permalink
Merge pull request #3576 from szarnyasg/regenerate-configuration-page…
Browse files Browse the repository at this point in the history
…-for-v1.1

Regenerate configuration page for v1.1
  • Loading branch information
szarnyasg authored Sep 9, 2024
2 parents e880b89 + 62a9f54 commit c5efbbc
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 91 deletions.
18 changes: 15 additions & 3 deletions _posts/2024-09-09-announcing-duckdb-110.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The `ieee_floating_point_ops` can be set to `false` to revert this behavior:

```sql
SET ieee_floating_point_ops = false;
SELECT 1/0 AS division_by_zero;
SELECT 1 / 0 AS division_by_zero;
```

```text
Expand All @@ -75,9 +75,17 @@ SELECT 1/0 AS division_by_zero;

```sql
SELECT (SELECT unnest(range(10)));
-- More than one row returned by a subquery used as an expression - scalar subqueries can only return a single row.
```

```console
Invalid Input Error: More than one row returned by a subquery used as
an expression - scalar subqueries can only return a single row.
```

```sql
SELECT ARRAY(SELECT unnest(range(10))) AS subquery_result;
```

```text
┌────────────────────────────────┐
│ subquery_result │
Expand Down Expand Up @@ -113,7 +121,11 @@ In this release, we have been working towards making community extensions easier
[**Histogram.**](https://github.com/duckdb/duckdb/pull/12590) This version introduces the `histogram` function that can be used to compute histograms over columns of a dataset. The histogram function works for columns of any type, and allows for various different binning strategies and a custom amount of bins.

```sql
FROM histogram('https://blobs.duckdb.org/data/ontime.parquet', UniqueCarrier, bin_count := 5);
FROM histogram(
'https://blobs.duckdb.org/data/ontime.parquet',
UniqueCarrier,
bin_count := 5
);
```

```text
Expand Down
Loading

0 comments on commit c5efbbc

Please sign in to comment.