diff options
| author | 2021-07-26 20:20:10 -0400 | |
|---|---|---|
| committer | 2021-07-26 22:56:48 -0400 | |
| commit | fb57305445d575f00c6ae95377b8ed7a7e38b643 (patch) | |
| tree | 9d18b140d64d8d1338266eecd44878490eb1ae2d /test/t_queryparse.py | |
| parent | queryparse: add function to build SQL queries (diff) | |
queryparse: remove literal set
Diffstat (limited to 'test/t_queryparse.py')
| -rwxr-xr-x | test/t_queryparse.py | 3 |
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() |
