/ FIX Cardinality: returns table cardinality in number of rows. */ This function can be called with a null argument to test the */ availability of Cardinality implementation (1 yes, 0 no). */ /
| 202 | /* availability of Cardinality implementation (1 yes, 0 no). */ |
| 203 | /***********************************************************************/ |
| 204 | int TDBFIX::Cardinality(PGLOBAL g) |
| 205 | { |
| 206 | if (!g) |
| 207 | return Txfp->Cardinality(g); |
| 208 | |
| 209 | if (Cardinal < 0) |
| 210 | Cardinal = Txfp->Cardinality(g); |
| 211 | |
| 212 | return Cardinal; |
| 213 | } // end of Cardinality |
| 214 | |
| 215 | /***********************************************************************/ |
| 216 | /* FIX GetMaxSize: returns file size in number of lines. */ |
no outgoing calls
no test coverage detected