We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uv.lock
1 parent ccb3a29 commit ad05b9bCopy full SHA for ad05b9b
pyiceberg/expressions/parser.py
@@ -69,7 +69,7 @@
69
from pyiceberg.typedef import L
70
from pyiceberg.types import strtobool
71
72
-ParserElement.enablePackrat()
+ParserElement.enable_packrat()
73
74
AND = CaselessKeyword("and")
75
OR = CaselessKeyword("or")
@@ -82,7 +82,7 @@
82
BETWEEN = CaselessKeyword("between")
83
84
unquoted_identifier = Word(alphas + "_", alphanums + "_$")
85
-quoted_identifier = QuotedString('"', escChar="\\", unquoteResults=True)
+quoted_identifier = QuotedString('"', esc_quote="\\", unquote_results=True)
86
87
88
@quoted_identifier.set_parse_action
0 commit comments