diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-10-02 15:52:46 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2017-10-04 09:27:31 -0400 |
| commit | fadebedff0049fee9575632f57561143aa8a801e (patch) | |
| tree | 72925808cdc80ebf6fe71e76c83fd9ff33109319 /test/engine | |
| parent | f846a789b78f977b4d7e8e16b412b07e77f2ab13 (diff) | |
| download | sqlalchemy-fadebedff0049fee9575632f57561143aa8a801e.tar.gz | |
Add SQL Server TIMESTAMP / ROWVERSION datatypes
SQL Server has an entirely different use for the TIMESTAMP
datatype that is unrelated to the SQL standard's version of this
type. It is a read-only type that returns an incrementing
binary value. The ROWVERSION name will supersede the TIMESTAMP
name. Implement datatype objects for both, separate from the
base DateTime/TIMESTAMP class hierarchy, and also implement
an optional integer coercion feature.
Change-Id: Ie2bd43b7aac57760b8ec6ff6e26460e2086a95eb
Fixes: #4086
Diffstat (limited to 'test/engine')
| -rw-r--r-- | test/engine/test_reflection.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/engine/test_reflection.py b/test/engine/test_reflection.py index 1bd369610..724f36147 100644 --- a/test/engine/test_reflection.py +++ b/test/engine/test_reflection.py @@ -1576,7 +1576,6 @@ def createTables(meta, schema=None): Column('test3', sa.Text), Column('test4', sa.Numeric(10, 2), nullable=False), Column('test5', sa.Date), - Column('test5_1', sa.TIMESTAMP), Column('parent_user_id', sa.Integer, sa.ForeignKey('%susers.user_id' % schema_prefix)), Column('test6', sa.Date, nullable=False), |
