| 114 | Trie false_trie; |
| 115 | |
| 116 | static Result<std::shared_ptr<TrieCache>> Make(const ConvertOptions& options) { |
| 117 | auto cache = std::make_shared<TrieCache>(); |
| 118 | RETURN_NOT_OK(InitializeTrie(options.null_values, &cache->null_trie)); |
| 119 | RETURN_NOT_OK(InitializeTrie(options.true_values, &cache->true_trie)); |
| 120 | RETURN_NOT_OK(InitializeTrie(options.false_values, &cache->false_trie)); |
| 121 | return cache; |
| 122 | } |
| 123 | }; |
| 124 | |
| 125 | ///////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected