Skip to content

Commit 38fbffa

Browse files
authored
cheat a little to make the output of FROM duckdb_extensions() more interesting (#1794)
1 parent ad768f2 commit 38fbffa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/lib/duckdb.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,11 @@ SELECT ST_Area('POLYGON((0 0, 0 1, 1 1, 1 0, 0 0))'::GEOMETRY) as area;
140140

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

143-
```sql echo
143+
```sql
144+
FROM duckdb_extensions() WHERE loaded AND JSON '1';
145+
```
146+
147+
```sql run=false
144148
FROM duckdb_extensions() WHERE loaded;
145149
```
146150

0 commit comments

Comments
 (0)