You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="version-tag">New in v19.1:</span> The output of `EXPLAIN (OPT,ENV)` is now a URL with the data encoded in the fragment portion. Opening the URL shows a page with the decoded data. This change makes it easier to share debugging information across different systems without encountering formatting issues.
297
+
298
+
Note that the data is processed in the local browser session and is never sent out over the network.
299
+
300
+
When you visit the URL above you should see the following output in your browser.
301
+
302
+
~~~
303
+
Version: CockroachDB CCL v19.2.0-rc.1 (x86_64-apple-darwin14, built 2019/10/14 18:28:24, go1.12.5)
291
304
292
305
CREATE TABLE episodes (
293
306
id INT8 NOT NULL,
@@ -304,7 +317,7 @@ ALTER TABLE startrek.public.episodes INJECT STATISTICS '[
304
317
"columns": [
305
318
"id"
306
319
],
307
-
"created_at": "2019-10-08 18:29:26.222957+00:00",
320
+
"created_at": "2019-11-04 11:22:26.249072+00:00",
308
321
"distinct_count": 79,
309
322
"histo_col_type": "INT8",
310
323
"name": "__auto__",
@@ -315,7 +328,7 @@ ALTER TABLE startrek.public.episodes INJECT STATISTICS '[
315
328
"columns": [
316
329
"season"
317
330
],
318
-
"created_at": "2019-10-08 18:29:26.222957+00:00",
331
+
"created_at": "2019-11-04 11:22:26.249072+00:00",
319
332
"distinct_count": 3,
320
333
"histo_col_type": "",
321
334
"name": "__auto__",
@@ -326,7 +339,7 @@ ALTER TABLE startrek.public.episodes INJECT STATISTICS '[
326
339
"columns": [
327
340
"num"
328
341
],
329
-
"created_at": "2019-10-08 18:29:26.222957+00:00",
342
+
"created_at": "2019-11-04 11:22:26.249072+00:00",
330
343
"distinct_count": 29,
331
344
"histo_col_type": "",
332
345
"name": "__auto__",
@@ -337,7 +350,7 @@ ALTER TABLE startrek.public.episodes INJECT STATISTICS '[
337
350
"columns": [
338
351
"title"
339
352
],
340
-
"created_at": "2019-10-08 18:29:26.222957+00:00",
353
+
"created_at": "2019-11-04 11:22:26.249072+00:00",
341
354
"distinct_count": 79,
342
355
"histo_col_type": "",
343
356
"name": "__auto__",
@@ -348,7 +361,7 @@ ALTER TABLE startrek.public.episodes INJECT STATISTICS '[
0 commit comments