summaryrefslogtreecommitdiff
path: root/test/sql
Commit message (Expand)AuthorAgeFilesLines
* Add window frame specificationpr/264Phillip Cloud2016-05-012-23/+71
* Don't double-process ResultMetaData for BufferedColumnResultProxyMike Bayer2016-04-271-5/+47
* Fix result set handling for case insensitive dupe colsMike Bayer2016-04-211-0/+15
* - limit this to sqlite for nowMike Bayer2016-03-301-0/+1
* - move all resultproxy tests intio test_resultsetMike Bayer2016-03-301-1/+336
* - Added :meth:`.Select.lateral` and related constructs to allowMike Bayer2016-03-291-0/+134
* - Added support for rendering "FULL OUTER JOIN" to both Core and ORM.Mike Bayer2016-03-281-0/+20
* - Fixed bug where the negation of an EXISTS expression would notMike Bayer2016-03-212-0/+42
* - move out unconsumed names tests from test_compiler out to test_insert, test...Mike Bayer2016-03-023-48/+62
* Add test for inserting multiple valuesAthena Yao2016-03-021-0/+38
* - additional adjustment to the fix made in 8ad968f33100baeb3b13c7e0b724b6b79a...Mike Bayer2016-02-211-0/+40
* - reworked the way the "select_wraps_for" expression isMike Bayer2016-02-202-1/+33
* - CTE functionality has been expanded to support all DML, allowingMike Bayer2016-02-112-4/+153
* - Fixed bug in :func:`.expression.text` construct where a double-colonMike Bayer2016-02-091-0/+11
* - add literal_binds for delete() statements in addition to insert()/update()Mike Bayer2016-02-031-16/+25
* fix passing literal_binds flag through for update and insertpr/232Tim Tate2016-02-021-0/+16
* - add changelog and migration notes for new Enum features,Mike Bayer2016-02-021-27/+149
* - Initial implementation of support for PEP-435 enumerated typesAlex Grönholm2016-02-021-29/+56
* - Fixed issue where inadvertent use of the Python ``__contains__``Mike Bayer2016-02-021-1/+23
* - rework ColumnCollection to no longer persist "all_col_set"; we don'tMike Bayer2016-01-261-0/+19
* - The workaround for right-nested joins on SQLite, where they are rewrittenMike Bayer2016-01-261-0/+5
* - native unicode expectations are too difficult to maintainMike Bayer2016-01-231-60/+0
* - add a forwards-test here as wellMike Bayer2016-01-211-0/+4
* - documenation updates to clarify specific SQLite versionsMike Bayer2016-01-211-10/+20
* - calling str() on a core sql construct has been made more "friendly",Mike Bayer2016-01-193-9/+79
* - A deep improvement to the recently added :meth:`.TextClause.columns`Mike Bayer2016-01-142-36/+197
* - Multi-tenancy schema translation for :class:`.Table` objects is added.Mike Bayer2016-01-081-0/+127
* - Added :class:`.mysql.JSON` for MySQL 5.7. The JSON type providesMike Bayer2016-01-063-44/+222
* - Fixed 1.0 regression where the eager fetch of cursor.rowcount wasMike Bayer2016-01-051-0/+17
* - Fixed an assertion that would raise somewhat inappropriatelyMike Bayer2015-12-231-0/+7
* - add some more oracle skipsMike Bayer2015-12-141-0/+2
* - Fixed bug in :meth:`.Update.return_defaults` which would cause allMike Bayer2015-12-141-0/+25
* - Fixed issue within the :meth:`.Insert.from_select` construct wherebyMike Bayer2015-12-091-0/+26
* - Fixed bug where CREATE TABLE with a no-column table, but a constraintMike Bayer2015-12-011-1/+25
* - Added support for parameter-ordered SET clauses in an UPDATEMike Bayer2015-11-281-0/+124
* - fix missing argument in TypeDecorator.copy(), fixes #3584, references #2919Mike Bayer2015-11-131-1/+15
* Merge branch 'pr204'Mike Bayer2015-10-291-0/+1
|\
| * - convert wrap_callable() to a general purpose update_wrapper-likeMike Bayer2015-10-291-60/+0
| * - wrap ColumnDefault empty arg callables like functools.wraps, setting __name...pr/204Martin J. Hsu2015-10-151-0/+61
* | - this was supposed to be client-side SQL default not server sideMike Bayer2015-10-091-1/+1
* | - open up autoincrement for columns that have a default; autoinc is usuallyMike Bayer2015-10-082-12/+24
* | - The system by which a :class:`.Column` considers itself to be anMike Bayer2015-10-074-3/+240
* | - fix bool testMike Bayer2015-09-271-1/+1
* | - break out critical aspects of test_query into their own testsMike Bayer2015-09-273-1416/+1585
|/
* - The :func:`.type_coerce` construct is now a fully fledged CoreMike Bayer2015-09-162-2/+68
* - Fixed regression in 1.0-released default-processor for multi-VALUESMike Bayer2015-08-312-16/+52
* - The :class:`.TypeDecorator` type extender will now work in conjunctionMike Bayer2015-08-271-8/+2
* - Added support for "set-aggregate" functions of the formticket_3516Mike Bayer2015-08-262-17/+112
* - Added support for the SQL-standard function :class:`.array_agg`,Mike Bayer2015-08-261-2/+10
* - build out a new base type for Array, as well as new any/all operatorsMike Bayer2015-08-252-5/+220