diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-05-24 15:26:47 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-05-24 15:26:47 +0300 |
commit | 11b652dda0fb2d7c348ba43f7b0e589b4c0edb85 (patch) | |
tree | 6f01bb2857f1d8462bc97e80d700a8fd4ff99b7d /sql/sql_class.h | |
parent | 701d369d1844f19853223860c8610e40b802f428 (diff) | |
download | mariadb-git-11b652dda0fb2d7c348ba43f7b0e589b4c0edb85.tar.gz |
Fixed a bug with big result sets and UNION's
BitKeeper/etc/ignore:
Added mysys/getopt.c mysys/getopt1.c to the ignore list
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 31da5c53bf8..fe6a7e2ed69 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -182,7 +182,7 @@ typedef struct st_copy_info { ha_rows copied; ha_rows error; enum enum_duplicates handle_duplicates; - int escape_char; + int escape_char, errorno; } COPY_INFO; @@ -666,6 +666,7 @@ class select_union :public select_result { TABLE *table; COPY_INFO info; uint save_time_stamp; + TMP_TABLE_PARAM *tmp_table_param; select_union(TABLE *table_par); ~select_union(); |