I have a query I use with wildcard for a field I call 'Nth' (#.#.#.#)
Where MATCH('@(nth) (^"1.1.1*")')
this works for
#.#.#.*
but fails (empty set) for
#.#.*
To my understanding it should work just the same way like
does in Mysql. In other words mysql would return 1.1.1.1
for both
like 1.1.1.%
and
like 1.1.%
Is there something I am missing about how the wildcard in fact works?