150
customSaNameType searchattribute.NameTypeMap,
151
chasmMapper *chasm.VisibilitySearchAttributesMapper,
153
>
if fnInterceptor == nil {
154
fnInterceptor = &NopFieldNameInterceptor{}
155
}
157
fvInterceptor = &NopFieldValuesInterceptor{}
158
}
159
160
>
combinedTypeMap := store.CombineTypeMaps(customSaNameType, chasmMapper)
converter_legacy.go
161
>
162
>
return &comparisonExprConverter{
163
>
fnInterceptor: fnInterceptor,
164
>
fvInterceptor: fvInterceptor,
165
>
allowedOperators: allowedOperators,
166
>
combinedTypeMap: combinedTypeMap,
167
>
chasmMapper: chasmMapper,
168
>
}
169
}
170