summaryrefslogtreecommitdiff
path: root/test/sql/test_insert.py
Commit message (Expand)AuthorAgeFilesLines
* Make all tests to be PEP8 compliantKhairi Hafsham2017-02-071-3/+2
* Pass **kw to bound params in multi valuesMike Bayer2017-01-091-0/+12
* Call nextval() on sequence when doing INSERT from SELECTMike Bayer2016-12-211-1/+20
* Count columns using PrimaryKeyConstraint.__len__ directlyMike Bayer2016-11-121-0/+17
* Add a qualifying character to multi INSERT..VALUES parameter namesMike Bayer2016-10-171-85/+85
* Change autoincrement compileerror to a warningMike Bayer2016-10-071-34/+53
* - move out unconsumed names tests from test_compiler out to test_insert, test...Mike Bayer2016-03-021-4/+28
* Add test for inserting multiple valuesAthena Yao2016-03-021-0/+38
* - CTE functionality has been expanded to support all DML, allowingMike Bayer2016-02-111-2/+3
* - Fixed issue within the :meth:`.Insert.from_select` construct wherebyMike Bayer2015-12-091-0/+26
* - The system by which a :class:`.Column` considers itself to be anMike Bayer2015-10-071-0/+100
* - Fixed regression in 1.0-released default-processor for multi-VALUESMike Bayer2015-08-311-3/+28
* - Added official support for a CTE used by the SELECT presentMike Bayer2015-05-081-0/+35
* PEP8 cleanup in /test/sqlEric Streeper2015-03-181-0/+1
* - The multi-values version of :meth:`.Insert.values` has beenMike Bayer2015-01-131-23/+113
* - :meth:`.Insert.from_select` now includes Python and SQL-expressionMike Bayer2014-10-101-2/+80
* - The :func:`~.expression.column` and :func:`~.expression.table`Mike Bayer2014-09-011-4/+4
* - The INSERT...FROM SELECT construct now implies ``inline=True``Mike Bayer2014-08-201-2/+107
* - update the flake8 rules againMike Bayer2014-07-181-71/+109
* - Fixed bug where multi-valued :class:`.Insert` construct would failMike Bayer2014-07-141-0/+41
* - Fixed bug in INSERT..FROM SELECT construct where selecting from aMike Bayer2014-05-251-1/+19
* - Fixed bug where calling :meth:`.Insert.values` with an empty listMike Bayer2014-02-191-0/+23
* - Fixed bug with :meth:`.Insert.from_select` method where the orderMike Bayer2013-12-191-0/+29
* - Added new method to the :func:`.insert` constructMike Bayer2013-07-051-1/+64
* - reinstate insert returning back into test_insert.py; defaultdialectMike Bayer2013-04-011-0/+10
* moving insert returning test back into CRUD test class until I figure out why...Diana Clarke2013-03-301-7/+0
* fixing tests for --db=mysql: VARCHAR requires a length on dialect mysqlDiana Clarke2013-03-301-3/+3
* move the insert tests from CRUDTest into sql/test_insert.py (see #2630)Diana Clarke2013-03-291-0/+309