mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-17568: LATERAL DERIVED is not clearly visible in EXPLAIN FORMAT=JSON
Make LATERAL DERIVED tables visible in EXPLAIN FORMAT=JSON output.
This commit is contained in:
@ -211,6 +211,7 @@ public:
|
||||
select_lex(NULL),
|
||||
#endif
|
||||
linkage(UNSPECIFIED_TYPE),
|
||||
is_lateral(false),
|
||||
message(NULL),
|
||||
having(NULL), having_value(Item::COND_UNDEF),
|
||||
using_temporary(false), using_filesort(false),
|
||||
@ -226,6 +227,7 @@ public:
|
||||
#endif
|
||||
const char *select_type;
|
||||
enum sub_select_type linkage;
|
||||
bool is_lateral;
|
||||
|
||||
/*
|
||||
If message != NULL, this is a degenerate join plan, and all subsequent
|
||||
|
Reference in New Issue
Block a user