diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-03-26 15:06:05 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-03-26 15:06:05 +0200 |
commit | 2ec108107db299b3984a06746388798acbd95b0b (patch) | |
tree | f9a11c1a04e8ec893c0d1b6512219306a0f965d8 /sql/table.h | |
parent | c9ba7c5f21582136747219c0f95be9a1f7b819ee (diff) | |
download | mariadb-git-2ec108107db299b3984a06746388798acbd95b0b.tar.gz |
Derived tables !
mysql-test/r/union.result:
small bug fixes in unions
BitKeeper/etc/ignore:
Added Docs/manual.texi.orig Docs/manual.texi.rej to the ignore list
mysql-test/t/union.test:
test for a bug fix in union's
sql/sql_union.cc:
bug fix for unions
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 259c34030b2..211a8ea816e 100644 --- a/sql/table.h +++ b/sql/table.h @@ -147,6 +147,7 @@ typedef struct st_table_list { bool straight; /* optimize with prev table */ bool updating; /* for replicate-do/ignore table */ bool shared; /* Used twice in union */ + void *derived; } TABLE_LIST; typedef struct st_open_table_list |