Skip to content

Commit

Permalink
cheat a little to make the output of FROM duckdb_extensions() more in…
Browse files Browse the repository at this point in the history
…teresting (#1794)
  • Loading branch information
Fil authored Nov 2, 2024
1 parent ad768f2 commit 38fbffa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/lib/duckdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,11 @@ SELECT ST_Area('POLYGON((0 0, 0 1, 1 1, 1 0, 0 0))'::GEOMETRY) as area;

To tell which extensions have been loaded, you can run the following query:

```sql echo
```sql
FROM duckdb_extensions() WHERE loaded AND JSON '1';
```

```sql run=false
FROM duckdb_extensions() WHERE loaded;
```

Expand Down

0 comments on commit 38fbffa

Please sign in to comment.