You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to create a new BoundFilter to compare strings. Because there's a struct constraint, it's not letting me pass the string type:
newBoundFilter<string>("srcip",lower:"127",lowerStrict:false,ordering:SortingOrder.alphanumeric)// Error: CS0453 The type 'string' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method 'BoundFilter<T>'
I'm trying to create a new BoundFilter to compare strings. Because there's a struct constraint, it's not letting me pass the string type:
Am I doing something wrong? According to the docs, it should be able to work: https://druid.apache.org/docs/latest/querying/filters.html#bound-filter
The text was updated successfully, but these errors were encountered: