summaryrefslogtreecommitdiff
path: root/test/sql/test_constraints.py
Commit message (Collapse)AuthorAgeFilesLines
...
* - Fixed errant space character when generating ADD CONSTRAINTMike Bayer2010-04-261-2/+2
| | | | for a named UNIQUE constraint.
* - added util.portable_instancemethod to provide a quick way to make an ↵Mike Bayer2010-02-221-2/+28
| | | | | | | | | | instancemethod "serializable" - SchemaType and subclasses Boolean, Enum are now serializable, including their ddl listener and other event callables. [ticket:1694] [ticket:1698] - AddConstraint/DropConstraint use the wrapper for _create_rule - added test coverage for AddConstraint override of _create_rule
* - reworked the DDL generation of ENUM and similar to be more platform agnostic.Mike Bayer2009-12-061-1/+1
| | | | | | | Uses a straight CheckConstraint with a generic expression. Preparing for boolean constraint in [ticket:1589] - CheckConstraint now accepts SQL expressions, though support for quoting of values will be very limited. we don't want to get into formatting dates and such.
* merge 0.6 series to trunk.Mike Bayer2009-08-061-126/+161
|
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-0/+335
See README.unittests for information on how to run the tests. [ticket:970]