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 assuming the way to perform a free text search in standard SQL is using the function FREETEXT(). node-sqlparser does parse FREETEXT(foo, 'bar') but it does not parse FREETEXT(*, 'bar') (with the wildcard) which would be needed to support $q unless we knew the data model and could list each field.
The text was updated successfully, but these errors were encountered:
I'm assuming the way to perform a free text search in standard SQL is using the function FREETEXT(). node-sqlparser does parse
FREETEXT(foo, 'bar')
but it does not parseFREETEXT(*, 'bar')
(with the wildcard) which would be needed to support$q
unless we knew the data model and could list each field.The text was updated successfully, but these errors were encountered: