| Commit message (Expand) | Author | Age | Files | Lines |
* | Ensure custom ops have consistent typing behavior, boolean support | Mike Bayer | 2017-09-01 | 1 | -6/+46 |
* | Flatten operator precedence for comparison operators | Michael Birtwell | 2017-05-25 | 1 | -12/+13 |
* | Enforce boolean result type for all eq_, is_, isnot, comparison | Mike Bayer | 2017-04-27 | 1 | -1/+2 |
* | Treat collation names as identifiers | Mike Bayer | 2017-03-23 | 1 | -1/+7 |
* | New features from python 2.7 | Катаев Денис | 2017-03-17 | 1 | -2/+2 |
* | Add "empty in" strategies; default to "static" | Mike Bayer | 2017-03-14 | 1 | -1/+31 |
* | add autoescape option to startswith, endswith, and contains | Diana Clarke | 2017-03-14 | 1 | -13/+110 |
* | - correctly document LIKE / ILIKE, fixes #3890 | Mike Bayer | 2017-01-16 | 1 | -6/+16 |
* | Support python3.6 | Mike Bayer | 2017-01-13 | 1 | -1/+1 |
* | update for 2017 copyright | Mike Bayer | 2017-01-04 | 1 | -1/+1 |
* | spelling: Postgresql -> PostgreSQL | Ville Skyttä | 2016-10-08 | 1 | -2/+2 |
* | Add "eager_parenthesis" late-compilation rule, use w/ PG JSON/HSTORE | Mike Bayer | 2016-10-01 | 1 | -2/+5 |
* | Exclude eq and ne from associative operators | John Passaro | 2016-09-19 | 1 | -1/+1 |
* | Add IS (NOT) DISTINCT FROM operators | Sebastian Bank | 2016-06-06 | 1 | -0/+33 |
* | - Fixed issue where inadvertent use of the Python ``__contains__`` | Mike Bayer | 2016-02-02 | 1 | -1/+4 |
* | - happy new year | Mike Bayer | 2016-01-29 | 1 | -1/+1 |
* | - Added :class:`.mysql.JSON` for MySQL 5.7. The JSON type provides | Mike Bayer | 2016-01-06 | 1 | -3/+12 |
* | - build out a new base type for Array, as well as new any/all operators | Mike Bayer | 2015-08-25 | 1 | -0/+46 |
* | - merge of ticket_3499 indexed access branch | Mike Bayer | 2015-08-17 | 1 | -2/+10 |
* | Added support for reflected modulo operator. | Dan Gittik | 2015-07-17 | 1 | -0/+8 |
* | - remove now-misleading comment that SQLite doesn't support MATCH, | Mike Bayer | 2015-03-14 | 1 | -2/+4 |
* | - copyright 2015 | Mike Bayer | 2015-03-10 | 1 | -1/+1 |
* | - start trying to move things into __slots__. This seems to reduce theslots | Mike Bayer | 2015-01-04 | 1 | -0/+3 |
* | Maul the evaulate & friends typo | Priit Laes | 2014-12-19 | 1 | -1/+1 |
* | - The :meth:`.Operators.match` operator is now handled such that the | Mike Bayer | 2014-12-04 | 1 | -0/+5 |
* | - apply pep8 formatting to sqlalchemy/sql, sqlalchemy/util, sqlalchemy/dialects, | Brian Jarrett | 2014-07-20 | 1 | -15/+19 |
* | - break up the <authors> copyright comment as part of a pass | Mike Bayer | 2014-07-09 | 1 | -1/+2 |
* | - add postgresql_regconfig argument to PG dialect for match() operator, | jonathan vanasco | 2014-07-08 | 1 | -2/+2 |
* | - hyperlink all the column operators listed in the ORM tutorial common filter... | Mike Bayer | 2014-05-24 | 1 | -4/+10 |
* | - The "primaryjoin" model has been stretched a bit further to allow | Mike Bayer | 2014-04-19 | 1 | -1/+1 |
* | - Added new flag :paramref:`.expression.between.symmetric`, when set to True | Mike Bayer | 2014-03-30 | 1 | -5/+11 |
* | - Added a new parameter :paramref:`.Operators.op.is_comparison`. This | Mike Bayer | 2014-01-31 | 1 | -4/+17 |
* | - happy new year | Mike Bayer | 2014-01-05 | 1 | -1/+1 |
* | - The precedence rules for the :meth:`.ColumnOperators.collate` operator | Mike Bayer | 2013-12-05 | 1 | -1/+5 |
* | Ensure API generation and fix cross references | Vraj Mohan | 2013-11-13 | 1 | -2/+5 |
* | An overhaul of expression handling for special symbols particularly | Mike Bayer | 2013-10-23 | 1 | -0/+10 |
* | - remove the ``__iter__()`` with notimplemented since it interferes | Mike Bayer | 2013-06-03 | 1 | -5/+0 |
* | - endless isinstance(x, str)s.... | Mike Bayer | 2013-04-28 | 1 | -9/+10 |
* | - the raw 2to3 run | Mike Bayer | 2013-04-27 | 1 | -5/+5 |
* | Fixed the consideration of the ``between()`` operator | Mike Bayer | 2013-02-02 | 1 | -1/+1 |
* | - add full docs for like()/ilike() | Mike Bayer | 2013-01-28 | 1 | -0/+28 |
* | happy new year (see #2645) | Diana Clarke | 2013-01-01 | 1 | -1/+1 |
* | just a pep8 pass of lib/sqlalchemy/sql/ | Diana Clarke | 2012-11-19 | 1 | -5/+40 |
* | Fixed a gotcha where inadvertently calling list() on a | Mike Bayer | 2012-11-18 | 1 | -0/+5 |
* | - more docs | Mike Bayer | 2012-10-26 | 1 | -6/+10 |
* | Added :meth:`.ColumnOperators.notin_`, | Mike Bayer | 2012-10-24 | 1 | -3/+48 |
* | - [bug] A tweak to column precedence which moves the | Mike Bayer | 2012-09-22 | 1 | -15/+20 |
* | - [bug] Added missing operators is_(), isnot() | Mike Bayer | 2012-09-22 | 1 | -0/+30 |
* | `lshift` (<<) and `rshift` (>>) are also supported as optional operators. | Mike Bayer | 2012-09-04 | 1 | -1/+19 |
* | - [feature] Reworked the startswith(), endswith(), | Mike Bayer | 2012-08-27 | 1 | -0/+9 |