summaryrefslogtreecommitdiff
path: root/test/sql/test_operators.py
Commit message (Expand)AuthorAgeFilesLines
* - Fixed bug where :meth:`.in_()` would go into an endless loop ifMike Bayer2014-02-131-0/+33
* - Added a new parameter :paramref:`.Operators.op.is_comparison`. ThisMike Bayer2014-01-311-0/+10
* - The precedence rules for the :meth:`.ColumnOperators.collate` operatorMike Bayer2013-12-051-0/+52
* An overhaul of expression handling for special symbols particularlyMike Bayer2013-10-231-4/+206
* - Removed some now unneeded version checks [ticket:2829] courtesy alex gaynorMike Bayer2013-09-221-1/+0
* - The :meth:`.Operators.notin_` operator added in 0.8 now properlyMike Bayer2013-08-071-0/+11
* - remove the ``__iter__()`` with notimplemented since it interferesMike Bayer2013-06-031-7/+6
* Fully implemented the IS and IS NOT operators withMike Bayer2013-04-221-1/+28
* The :meth:`.ColumnOperators.in_` operator will now coerceMike Bayer2013-02-021-0/+6
* - BinaryExpression now keeps track of "left" and "right" as passed in,Mike Bayer2012-12-021-0/+52
* Fixed a gotcha where inadvertently calling list() on aMike Bayer2012-11-181-0/+12
* Added :meth:`.ColumnOperators.notin_`,Mike Bayer2012-10-241-1/+41
* - move most/all operator specific tests into test_operator, convert fully to TOTMike Bayer2012-10-241-32/+334
* - get 100% lint/pep8 happening for test_compiler; next we will beginMike Bayer2012-10-241-26/+278
* trying different approaches to test layout. in this one, the testing modulesMike Bayer2012-09-271-2/+3
* - [bug] A tweak to column precedence which moves theMike Bayer2012-09-221-0/+4
* - aaand actually get is/isnot to be usable with None/NULLMike Bayer2012-09-221-2/+7
* - [bug] Added missing operators is_(), isnot()Mike Bayer2012-09-221-0/+10
* add a contains() override testMike Bayer2012-09-041-0/+11
* `lshift` (<<) and `rshift` (>>) are also supported as optional operators.Mike Bayer2012-09-041-1/+37
* - [feature] Reworked the startswith(), endswith(),Mike Bayer2012-08-271-1/+245
* - [feature] The Core oeprator system now includesMike Bayer2012-08-201-0/+96
* _adapt_expression() moves fully to _DefaultColumnComparator which resumesMike Bayer2012-08-161-49/+9
* -we move all the invocation of "_adapt_expression" into TypeEngine.Comparator...Mike Bayer2012-08-161-1/+1
* - fix concat() operator, testsMike Bayer2012-08-141-2/+64
* move the whole thing to TypeEngine. the feature is pretty much for free like...Mike Bayer2012-08-131-31/+130
* - develop new system of applying custom operators to ColumnElement classes. ...Mike Bayer2012-08-131-0/+105