returns number of fields indexed
| 453 | |
| 454 | // returns number of fields indexed |
| 455 | uint Index_FieldsCount |
| 456 | ( |
| 457 | const Index idx |
| 458 | ) { |
| 459 | ASSERT(idx != NULL); |
| 460 | |
| 461 | return array_len(idx->fields); |
| 462 | } |
| 463 | |
| 464 | // returns indexed fields |
| 465 | const IndexField *Index_GetFields |
no test coverage detected