summaryrefslogtreecommitdiff
path: root/sql/ha_federated.h
diff options
context:
space:
mode:
authorunknown <patg@patrick-galbraiths-computer.local>2005-01-26 11:47:28 -0800
committerunknown <patg@patrick-galbraiths-computer.local>2005-01-26 11:47:28 -0800
commit13ec3ef6c76639f88abc25c7bad3c5dce1fbc340 (patch)
tree9178e86595779f2bf0daef367df7ef31ecbfc49c /sql/ha_federated.h
parent52332cce9212f3ea63ec7509cbd0b11588951682 (diff)
downloadmariadb-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-xsql/ha_federated.h2
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.