The FST (Finite State Transducer) index accelerates regex and prefix text queries by compactly encoding dictionary-encoded columns.
LIKE 'prefix%'
)product LIKE 'Smart%'
to quickly find all products starting with “Smart”WHERE product LIKE 'Phone%'
, FST can efficiently traverse the initial states of the automaton that correspond to the prefix “Phone”, then identify all possible completions that exist in the data.
encodingType
to DICTIONARY
(this is the default if left unspecified)