Like >>> print Like(custom('ITEM_NAME'), 'Staron%') ITEM_NAME like 'Staron%'
| 339 | right = property(lambda self: self.elements[1]) |
| 340 | |
| 341 | class Like(InfixedComparisonExpression): |
| 342 | """Like |
| 343 | |
| 344 | >>> print Like(custom('ITEM_NAME'), 'Staron%') |
| 345 | ITEM_NAME like 'Staron%' |
| 346 | """ |
| 347 | def __init__(self, value, pattern): |
| 348 | super(Like, self).__init__('like', value, pattern) |
| 349 | |
| 350 | class LessThan(InfixedComparisonExpression): |
| 351 | """LessThan |
no outgoing calls
no test coverage detected