diff options
author | unknown <monty@donna.mysql.com> | 2001-01-28 21:35:50 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-28 21:35:50 +0200 |
commit | 184e24b2253a81b03476e3d4d8cf56d5eb9dbf18 (patch) | |
tree | fabb5447e17b9f0959cb83b6d88351367ca53645 /sql/ha_myisammrg.cc | |
parent | 298ba0d39d6d38d5be860a3ad8a55b469b67e7d8 (diff) | |
download | mariadb-git-184e24b2253a81b03476e3d4d8cf56d5eb9dbf18.tar.gz |
Fixed ALTER TABLE on MERGE tables
Fixed bug in DISTINCT
Docs/manual.texi:
Updated Changelog
Cleaned up adding character sets
merge/open.c:
skip comments
myisam/mi_check.c:
Fixed bug when sorting index on Windows
myisammrg/myrg_info.c:
Use only portable printf arguments
myisammrg/myrg_rrnd.c:
Use only portable printf arguments
mysql-test/r/distinct.result:
Added test case for bug in distinct
mysql-test/r/merge.result:
Added test for ALTER TABLE
mysql-test/t/distinct.test:
Added test case for bug in distinct
mysql-test/t/merge.test:
Added test for ALTER TABLE
sql-bench/crash-me.sh:
Fixed portability issues
sql/ha_myisammrg.cc:
Fixed for ALTER TABLE on MERGE tables
sql/item_sum.cc:
Fixed bug in DISTINCT
sql/sql_db.cc:
Added test of namelen in check_db_name
sql/sql_select.cc:
Fixed bug in DISTINCT
sql/sql_select.h:
Fixed bug in DISTINCT
sql/sql_table.cc:
Fixed ALTER TABLE on MERGE tables
sql/table.cc:
Added test of namelen in check_db_name
sql/table.h:
Fixed ALTER TABLE on MERGE tables
Diffstat (limited to 'sql/ha_myisammrg.cc')
-rw-r--r-- | sql/ha_myisammrg.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_myisammrg.cc b/sql/ha_myisammrg.cc index 863054b4837..4c562282090 100644 --- a/sql/ha_myisammrg.cc +++ b/sql/ha_myisammrg.cc @@ -177,6 +177,7 @@ void ha_myisammrg::info(uint flag) errkey = info.errkey; table->keys_in_use=(((key_map) 1) << table->keys)- (key_map) 1; table->db_options_in_use = info.options; + table->is_view=1; mean_rec_length=info.reclength; block_size=0; update_time=0; |