Skip to content

Commit

Permalink
SearchTerm::$operators: add the case-insensitive regex operator "~*"
Browse files Browse the repository at this point in the history
  • Loading branch information
zozlak committed Oct 29, 2024
1 parent b43cb11 commit eb2d026
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/acdhOeaw/arche/lib/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
* @property NamedNode $accessRestriction
* @property NamedNode $accessRestrictionAgg
* @property NamedNode $accessRole
* @property NamedNode $aclRead
* @property NamedNode $binaryModificationDate
* @property NamedNode $binaryModificationUser
* @property NamedNode $binarySize
Expand Down
1 change: 1 addition & 0 deletions src/acdhOeaw/arche/lib/SearchTerm.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class SearchTerm {
'<=' => null,
'>=' => null,
'~' => self::TYPE_STRING,
'~*' => self::TYPE_STRING,
self::OPERATOR_FTS => self::TYPE_FTS,
'&&' => self::TYPE_SPATIAL,
'&&&' => self::TYPE_SPATIAL,
Expand Down

0 comments on commit eb2d026

Please sign in to comment.