diff options
Diffstat (limited to 'test/ext/mypy/plain_files/sql_operations.py')
-rw-r--r-- | test/ext/mypy/plain_files/sql_operations.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ext/mypy/plain_files/sql_operations.py b/test/ext/mypy/plain_files/sql_operations.py index b7bae0185..78b0a467c 100644 --- a/test/ext/mypy/plain_files/sql_operations.py +++ b/test/ext/mypy/plain_files/sql_operations.py @@ -25,7 +25,8 @@ expr4 = -c2 expr5 = ~(c2 == 5) -expr6 = ~column("q", Boolean) +q = column("q", Boolean) +expr6 = ~q expr7 = c1 + "x" |