Example #1
0
 def test_not_startswith_firebird(self):
     self.assert_compile(
         ~column('x').startswith('y'),
         "x NOT STARTING WITH :x_1",
         checkparams={'x_1': 'y'},
         dialect=firebird.dialect()
     )
Example #2
0
 def test_not_startswith_firebird(self):
     self.assert_compile(
         ~column('x').startswith('y'),
         "x NOT STARTING WITH :x_1",
         checkparams={'x_1': 'y'},
         dialect=firebird.dialect()
     )
Example #3
0
 def test_not_startswith_firebird(self):
     self.assert_compile(
         ~column("x").startswith("y"),
         "x NOT STARTING WITH :x_1",
         checkparams={"x_1": "y"},
         dialect=firebird.dialect(),
     )