aboutsummaryrefslogtreecommitdiffstats
path: root/test/t_queryparse.py
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2021-07-26 20:20:10 -0400
committerGravatar - 2021-07-26 22:56:48 -0400
commitfb57305445d575f00c6ae95377b8ed7a7e38b643 (patch)
tree9d18b140d64d8d1338266eecd44878490eb1ae2d /test/t_queryparse.py
parentqueryparse: add function to build SQL queries (diff)
queryparse: remove literal set
Diffstat (limited to 'test/t_queryparse.py')
-rwxr-xr-xtest/t_queryparse.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/t_queryparse.py b/test/t_queryparse.py
index ea15c42..1c63259 100755
--- a/test/t_queryparse.py
+++ b/test/t_queryparse.py
@@ -33,9 +33,8 @@ def prettyprint(s):
def f(x):
print(x)
- v,lits = queryparse.parse(x)
+ v = queryparse.parse(x)
prettyprint(str(v))
- print(lits)
_,exr = queryparse.build([], v)
prettyprint(exr)
print()