1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

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
This commit is contained in:
unknown
2007-12-13 21:34:05 +04:00
parent 0cc269da52
commit f61f5f72f5
4 changed files with 20 additions and 40 deletions

View File

@@ -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);
}