Nothing
Code
DBI::dbGetQuery(con, "EXPLAIN SELECT 1;")
Output
physical_plan
┌───────────────────────────┐
│ PROJECTION │
│ ──────────────────── │
│ 1 │
│ │
│ ~1 Rows │
└─────────────┬─────────────┘
┌─────────────┴─────────────┐
│ DUMMY_SCAN │
└───────────────────────────┘
Code
DBI::dbExecute(con, "PRAGMA explain_output='all';")
Output
[1] 0
Code
DBI::dbGetQuery(con, "EXPLAIN SELECT 1;")
Output
logical_plan
┌───────────────────────────┐
│ PROJECTION │
│ ──────────────────── │
│ Expressions: 1 │
└─────────────┬─────────────┘
┌─────────────┴─────────────┐
│ DUMMY_SCAN │
│ ──────────────────── │
└───────────────────────────┘
logical_opt
┌───────────────────────────┐
│ PROJECTION │
│ ──────────────────── │
│ Expressions: 1 │
│ │
│ ~1 Rows │
└─────────────┬─────────────┘
┌─────────────┴─────────────┐
│ DUMMY_SCAN │
│ ──────────────────── │
│ ~1 Rows │
└───────────────────────────┘
physical_plan
┌───────────────────────────┐
│ PROJECTION │
│ ──────────────────── │
│ 1 │
│ │
│ ~1 Rows │
└─────────────┬─────────────┘
┌─────────────┴─────────────┐
│ DUMMY_SCAN │
└───────────────────────────┘
Code
rs <- DBI::dbGetQuery(con, "SELECT 1;")
rs[FALSE, ]
Output
integer(0)
Code
rs <- DBI::dbGetQuery(con, "SELECT 1;")
class(rs) <- c("duckdb_explain", class(rs))
rs
Output
1
1 1
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.