summaryrefslogtreecommitdiff
path: root/ndb/src/ndbapi/NdbScanFilter.cpp
diff options
context:
space:
mode:
authorunknown <mysqldev@o2k.irixworld.net>2004-07-09 15:10:24 +0200
committerunknown <mysqldev@o2k.irixworld.net>2004-07-09 15:10:24 +0200
commitfd595190f9f4d21b8d0e350866a4e8da7d03a146 (patch)
tree6119075e34b7b603dcf821b62ebaf8aa90d85eee /ndb/src/ndbapi/NdbScanFilter.cpp
parent6e5eda0314e1c1aa9f6277a2e042b57e5d078c24 (diff)
downloadmariadb-git-fd595190f9f4d21b8d0e350866a4e8da7d03a146.tar.gz
Irix64 mipspro ndb compile fixes
Diffstat (limited to 'ndb/src/ndbapi/NdbScanFilter.cpp')
-rw-r--r--ndb/src/ndbapi/NdbScanFilter.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/ndb/src/ndbapi/NdbScanFilter.cpp b/ndb/src/ndbapi/NdbScanFilter.cpp
index 9542b226d7d..eace1a0acf5 100644
--- a/ndb/src/ndbapi/NdbScanFilter.cpp
+++ b/ndb/src/ndbapi/NdbScanFilter.cpp
@@ -337,7 +337,6 @@ static const tab2 table2[] = {
const int tab_sz = sizeof(table)/sizeof(table[0]);
const int tab2_sz = sizeof(table2)/sizeof(table2[0]);
-template<typename T>
int
matchType(const NdbDictionary::Column * col){
return 1;
@@ -382,7 +381,7 @@ NdbScanFilterImpl::cond_col_const(Interpreter::BinaryCondition op,
return -1;
}
- if(!matchType<T>(col)){
+ if(!matchType(col)){
/**
* Code not reached
*/
@@ -777,3 +776,9 @@ main(void){
return 0;
}
#endif
+
+template class Vector<NdbScanFilterImpl::State>;
+template int NdbScanFilterImpl::cond_col_const(Interpreter::BinaryCondition, Uint32 attrId, Uint32);
+template int NdbScanFilterImpl::cond_col_const(Interpreter::BinaryCondition, Uint32 attrId, Uint64);
+
+