diff options
author | monty@mysql.com <> | 2004-12-31 00:50:30 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-12-31 00:50:30 +0200 |
commit | 34d5331cee44cdcb62245779ad486ccbef6bf4c2 (patch) | |
tree | d4dfebc9b9c93790a9be3f9e6807f3923a6b3d3e /sql/table.h | |
parent | 4dbd101c571a71db38d4ecb61f3ce6b87012122a (diff) | |
parent | d71c030587c8638422c5e7d23043430f2733575b (diff) | |
download | mariadb-git-34d5331cee44cdcb62245779ad486ccbef6bf4c2.tar.gz |
Merge with global tree
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sql/table.h b/sql/table.h index 4d158d1835d..4f01751ea76 100644 --- a/sql/table.h +++ b/sql/table.h @@ -145,8 +145,14 @@ struct st_table { int current_lock; /* Type of lock on table */ enum tmp_table_type tmp_table; my_bool copy_blobs; /* copy_blobs when storing */ - my_bool null_row; /* All columns are null */ - my_bool maybe_null,outer_join; /* Used with OUTER JOIN */ + /* + Used in outer joins: if true, all columns are considered to have NULL + values, including columns declared as "not null". + */ + my_bool null_row; + /* 0 or JOIN_TYPE_{LEFT|RIGHT}, same as TABLE_LIST::outer_join */ + my_bool outer_join; + my_bool maybe_null; /* true if (outer_join != 0) */ my_bool force_index; my_bool distinct,const_table,no_rows; my_bool key_read; |