1
0
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:
Colin Dellow
2018-07-05 21:49:28 -04:00
parent 025320d525
commit e83a21db15
3 changed files with 0 additions and 12 deletions

View File

@@ -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;