| 921 | }; |
| 922 | |
| 923 | bool hasNestedDictionaryLayers(const VectorPtr& baseVector) { |
| 924 | return baseVector && VectorEncoding::isDictionary(baseVector->encoding()) && |
| 925 | VectorEncoding::isDictionary(baseVector->valueVector()->encoding()); |
| 926 | } |
| 927 | |
| 928 | } // namespace |
| 929 |
no test coverage detected