Skip to content

Commit

Permalink
Add &< and &> operators
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitan94 committed Aug 13, 2020
1 parent 9442c8b commit b720517
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mobilitydb_sqlalchemy/comparator.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
BBOX_NEVER_LESS_THAN = operators.custom_op("&>")
BBOX_STRICTLY_TO_LEFT = operators.custom_op("<<")
BBOX_STRICTLY_TO_RIGHT = operators.custom_op(">>")
BBOX_NOT_TO_THE_RIGHT_OF = operators.custom_op("&<")
BBOX_NOT_TO_THE_LEFT_OF = operators.custom_op("&>")
BBOX_STRICTLY_BELOW = operators.custom_op("<<|")
BBOX_STRICTLY_ABOVE = operators.custom_op("|>>")
BBOX_DOES_NOT_EXTEND_TO_LEFT = operators.custom_op("&>")
Expand All @@ -45,7 +47,7 @@
BBOX_DOES_NOT_EXTEND_IN_FRONT = operators.custom_op("&</")
BBOX_DOES_NOT_EXTEND_IN_BACK = operators.custom_op("/&>")
BBOX_ALWAYS_BEFORE = operators.custom_op("<<#")
BBOX_ALWAYS_AFTER = operators.custom_op("<<#")
BBOX_ALWAYS_AFTER = operators.custom_op("#>>")
BBOX_NEVER_AFTER = operators.custom_op("&<#")
BBOX_NEVER_BEFORE = operators.custom_op("#&>")
BBOX_CONTAINS = operators.custom_op("@>")
Expand Down

0 comments on commit b720517

Please sign in to comment.