Skip to content

Commit

Permalink
Define replace method to sql v1.2.2 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarreras committed May 25, 2021
1 parent 2b32aef commit 72eea0f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ooquery/operators.py
Expand Up @@ -42,6 +42,9 @@ def __repr__(self):
def __str__(self):
return self.field

def replace(self, *args):
return self.field.replace(*args)


class InnerJoin(JoinType):
type_ = 'INNER'
Expand Down

0 comments on commit 72eea0f

Please sign in to comment.