diff options
| author | Gavin Wahl <gwahl@fusionbox.com> | 2014-08-07 14:12:46 -0600 |
|---|---|---|
| committer | Gavin Wahl <gwahl@fusionbox.com> | 2014-08-07 14:12:46 -0600 |
| commit | 8ffe95af292e0930b7126aae1905a97f7ebdfb24 (patch) | |
| tree | e2ada6890d9120d84a353614aadd333412cf450e /tests | |
| parent | 8f5f638b1a0c0759adf122450f9027f47a4a220e (diff) | |
| download | sqlparse-8ffe95af292e0930b7126aae1905a97f7ebdfb24.tar.gz | |
Handle modulo operator without spaces
`x %3` should be interpreted as a modulo operation, not a parameter
marker.
Co-authored-by: Rocky Meza <rmeza@fusionbox.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_parse.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py index 6d7f7df..d77bb43 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -99,6 +99,10 @@ class SQLParseTest(TestCaseBase): self.assert_(t[-1].ttype is sqlparse.tokens.Name.Placeholder) self.assertEqual(t[-1].value, '$a') + def test_modulo_not_placeholder(self): + tokens = list(sqlparse.lexer.tokenize('x %3')) + self.assertEqual(tokens[2][0], sqlparse.tokens.Operator) + def test_access_symbol(self): # see issue27 t = sqlparse.parse('select a.[foo bar] as foo')[0].tokens self.assert_(isinstance(t[-1], sqlparse.sql.Identifier)) |
