Skip to main content

uqa_storage/
fts_index_stat.rs

1//
2// Unified Query Algebra
3//
4// Copyright (c) 2023-2026 Cognica, Inc.
5//
6
7//! Provider-independent full-text index inspection counts.
8
9#[derive(Debug, Clone, PartialEq, Eq)]
10pub struct FtsIndexStat {
11    pub table_name: String,
12    pub field: String,
13    pub analyzer: String,
14    pub posting_count: u64,
15    pub doc_length_count: u64,
16    pub indexed_doc_count: u64,
17    pub term_count: u64,
18    pub total_field_length: u64,
19}