diff options
author | patg@patrick-galbraiths-computer.local <> | 2005-01-26 11:47:28 -0800 |
---|---|---|
committer | patg@patrick-galbraiths-computer.local <> | 2005-01-26 11:47:28 -0800 |
commit | 097bc9294ca5150d1d0a76756cfe07ce45494dff (patch) | |
tree | 9178e86595779f2bf0daef367df7ef31ecbfc49c /sql/ha_federated.h | |
parent | 470aed3aaf0c1af673c1ac02c3da620f597a0f82 (diff) | |
download | mariadb-git-097bc9294ca5150d1d0a76756cfe07ce45494dff.tar.gz |
changes to get rid of compile warnings in both ha_federated.cc and ha_federated.h
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. |