diff options
author | unknown <patg@patrick-galbraiths-computer.local> | 2005-01-26 11:47:28 -0800 |
---|---|---|
committer | unknown <patg@patrick-galbraiths-computer.local> | 2005-01-26 11:47:28 -0800 |
commit | 13ec3ef6c76639f88abc25c7bad3c5dce1fbc340 (patch) | |
tree | 9178e86595779f2bf0daef367df7ef31ecbfc49c /sql/ha_federated.h | |
parent | 52332cce9212f3ea63ec7509cbd0b11588951682 (diff) | |
download | mariadb-git-13ec3ef6c76639f88abc25c7bad3c5dce1fbc340.tar.gz |
changes to get rid of compile warnings in both ha_federated.cc and ha_federated.h
sql/ha_federated.cc:
changes to get rid of compile warnings
sql/ha_federated.h:
changes to get rid of compile warnings
Diffstat (limited to 'sql/ha_federated.h')
-rwxr-xr-x | sql/ha_federated.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_federated.h b/sql/ha_federated.h index b44ad937650..56f5e6de4b7 100755 --- a/sql/ha_federated.h +++ b/sql/ha_federated.h @@ -130,7 +130,7 @@ public: /* The next method will never be called if you do not implement indexes. */ - virtual double read_time(ha_rows rows) { return (double) rows / 20.0+1; } + virtual double read_time(uint index, uint ranges, ha_rows rows) { return (double) rows / 20.0+1; } /* Everything below are methods that we implment in ha_federated.cc. |