mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-09-16 22:49:59 +00:00
remove match/regexp support
These are only enabled if we implement `xFindFunction`, which we don't
This commit is contained in:
@@ -61,18 +61,12 @@ std::string Constraint::describe() const {
|
||||
case GreaterThanOrEqual:
|
||||
rv.append(">=");
|
||||
break;
|
||||
case Match:
|
||||
rv.append("MATCH");
|
||||
break;
|
||||
case Like:
|
||||
rv.append("LIKE");
|
||||
break;
|
||||
case Glob:
|
||||
rv.append("GLOB");
|
||||
break;
|
||||
case Regexp:
|
||||
rv.append("REGEXP");
|
||||
break;
|
||||
case NotEqual:
|
||||
rv.append("<>");
|
||||
break;
|
||||
|
Reference in New Issue
Block a user