feat(ui/explorer): add EXPLAIN ANALYZE meta query template

pull/5687/head
Pavel Zavora 2021-03-05 16:01:54 +01:00
parent e2222b0df0
commit 12af197367
1 changed files with 6 additions and 0 deletions

View File

@ -249,6 +249,12 @@ export const METAQUERY_TEMPLATE_OPTIONS: Array<
query: 'EXPLAIN SELECT * FROM "db_name"."rp_name"."measurement"',
type: DropdownChildTypes.Item,
},
{
id: 'Explain Analyze',
text: 'Explain Analyze',
query: 'EXPLAIN ANALYZE SELECT * FROM "db_name"."rp_name"."measurement"',
type: DropdownChildTypes.Item,
},
{
id: `mqtd-divider-8`,
type: DropdownChildTypes.Divider,