diff options
author | unknown <gluh@mysql.com/eagle.(none)> | 2007-12-13 21:34:05 +0400 |
---|---|---|
committer | unknown <gluh@mysql.com/eagle.(none)> | 2007-12-13 21:34:05 +0400 |
commit | 115c639015c2cc5b484bf876504038044a60b77d (patch) | |
tree | b85a358a96a337162681474715a2b47fdfb830f7 /sql/ha_partition.cc | |
parent | 9de3564dc20cad2fd26fc395dfc506e1b2a95052 (diff) | |
download | mariadb-git-115c639015c2cc5b484bf876504038044a60b77d.tar.gz |
additional after merge fix
mysql-test/r/partition_range.result:
removed fix for bug#30573
mysql-test/suite/parts/r/rpl_partition.result:
updated result file
mysql-test/t/partition_range.test:
removed test case for bug#30573
sql/ha_partition.cc:
removed fix for bug#30573
Diffstat (limited to 'sql/ha_partition.cc')
-rw-r--r-- | sql/ha_partition.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_partition.cc b/sql/ha_partition.cc index a792d5c4161..d251e056c3e 100644 --- a/sql/ha_partition.cc +++ b/sql/ha_partition.cc @@ -3853,7 +3853,7 @@ int ha_partition::read_range_first(const key_range *start_key, start_key->key, start_key->keypart_map, start_key->flag); } - DBUG_RETURN (error? error: compare_key(end_range) <= 0 ? 0 : HA_ERR_END_OF_FILE); + DBUG_RETURN(error); } |