diff options
| author | Daniel Hall <daniel.hall@moesol.com> | 2022-07-30 15:12:20 -0400 |
|---|---|---|
| committer | Federico Caselli <cfederico87@gmail.com> | 2022-08-10 21:11:59 +0200 |
| commit | ddbd9dafffdedf6fb464947394c81c8b02153e14 (patch) | |
| tree | 20a0e23fb1058d0b21a462772e91cf217dbd80ea /test/requirements.py | |
| parent | c4b7f1f7c9745a72f22886e6ca487f3c631a20f5 (diff) | |
| download | sqlalchemy-ddbd9dafffdedf6fb464947394c81c8b02153e14.tar.gz | |
Support comments on MSSQL
Added support table and column comments on MSSQL when
creating a table. Added support for reflecting table comments.
Thanks to Daniel Hall for the help in this pull request.
Fixes: #7844
Closes: #8225
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/8225
Pull-request-sha: 540f4eb6395f9feed4b4240e3d22f539021948e9
Change-Id: I69f48c6dda4e00ec3d82fdeff13f3df9d735b7b0
Diffstat (limited to 'test/requirements.py')
| -rw-r--r-- | test/requirements.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requirements.py b/test/requirements.py index 447578444..9001b5236 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -168,7 +168,7 @@ class DefaultRequirements(SuiteRequirements): @property def comment_reflection(self): - return only_on(["postgresql", "mysql", "mariadb", "oracle"]) + return only_on(["postgresql", "mysql", "mariadb", "oracle", "mssql"]) @property def constraint_comment_reflection(self): |
