Markus Schiltknecht writes:
> The prefix_matching_constraint() function prepares an WHERE clause,
> which imitates the sqlite'ism named 'GLOB'. Instead of using a clause
> like
>
>   WHERE id GLOB 'deadbe*'
>
> It now prepares a where clause more similar to:
>
>   WHERE id >= 'deadbe' AND id <= 'deadbf'

Sorry to interrupt but in standard SQL there is

    WHERE id LIKE 'deadbe%'

and I happen to use it occasionally on the command line.  I'm worried
that that won't be possible anymore after the unhexification.

-- 
Ludovic Brenta.



_______________________________________________
Monotone-devel mailing list
Monotone-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/monotone-devel

Reply via email to