diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2020-07-08 16:26:34 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2020-07-31 13:43:03 +0200 |
commit | a8458a2345ea2497ada2f1bd01aeb9c34934dfc6 (patch) | |
tree | 86aac1037b9f28970e99f9b1c9f5dcc500b89830 /sql/table.h | |
parent | 78c2a5ab7061842b449e4acdbc725cdff2593549 (diff) | |
download | mariadb-git-a8458a2345ea2497ada2f1bd01aeb9c34934dfc6.tar.gz |
MDEV-21201 No records produced in information_schema query, depending on projection
In case of NATURAL JOIN / USING mark all field (one table can not be opened
in any case so optimisation does not worth it).
IMHO table should be checked for used fields and filled after prepare,
when we will fave whole info about used fields but it is too big change
for a bugfix. Which will be made later by Serg patch
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/table.h b/sql/table.h index a5821a712c6..3d289bf241a 100644 --- a/sql/table.h +++ b/sql/table.h @@ -2183,6 +2183,7 @@ struct TABLE_LIST parsing 'this' is a NATURAL/USING join iff (natural_join != NULL). */ TABLE_LIST *natural_join; + bool part_of_natural_join; /* True if 'this' represents a nested join that is a NATURAL JOIN. For one of the operands of 'this', the member 'natural_join' points |