diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-05-23 21:10:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-05-23 21:10:14 +0000 |
commit | c82540033c0876690355f80a19ab46f7a9304d72 (patch) | |
tree | 1a9e80bd2e7e6a0cbe0735ed961bac97d7624cd3 | |
parent | 9a04c2f65754ac7bf93e0f58f68e59b41e43e67e (diff) | |
parent | 2632a8db05d69607260d412852f7cc5c0ac0f368 (diff) | |
download | sqlalchemy-c82540033c0876690355f80a19ab46f7a9304d72.tar.gz |
Merge "fix typo in reference documentation"
-rw-r--r-- | doc/build/changelog/migration_13.rst | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/orm/query.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/sql/selectable.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/build/changelog/migration_13.rst b/doc/build/changelog/migration_13.rst index 78ac21fb5..6e2913350 100644 --- a/doc/build/changelog/migration_13.rst +++ b/doc/build/changelog/migration_13.rst @@ -1672,7 +1672,7 @@ However, the current situation is that :class:`.Sequence` has been repurposed on SQL Server specifically in order to affect the "start" and "increment" parameters for the ``IDENTITY`` specification on a primary key column. In order to make the transition towards normal sequences being available as well, -using :class:.`.Sequence` will emit a deprecation warning throughout the +using :class:`.Sequence` will emit a deprecation warning throughout the 1.3 series. In order to affect "start" and "increment", use the new ``mssql_identity_start`` and ``mssql_identity_increment`` parameters on :class:`_schema.Column`:: diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index 7f910afed..02cfbfcb2 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -1599,7 +1599,7 @@ class Query(Generative): :meth:`_query.Query.with_statement_hint` - :meth:.`.Query.prefix_with` - generic SELECT prefixing which also + :meth:`.Query.prefix_with` - generic SELECT prefixing which also can suit some database-specific HINT syntaxes such as MySQL optimizer hints diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py index cc82c509b..85abbb5e0 100644 --- a/lib/sqlalchemy/sql/selectable.py +++ b/lib/sqlalchemy/sql/selectable.py @@ -3838,7 +3838,7 @@ class Select( :meth:`_expression.Select.with_hint` - :meth:.`.Select.prefix_with` - generic SELECT prefixing which also + :meth:`.Select.prefix_with` - generic SELECT prefixing which also can suit some database-specific HINT syntaxes such as MySQL optimizer hints |