diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-06-01 16:13:36 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-06-01 16:13:36 +0000 |
| commit | 7b6fb299bb6b47dfeb22a5650b95af7fa0b35ec2 (patch) | |
| tree | 84d683a496c9951838adb4efc09687f7c55b05af /lib/sqlalchemy/testing/requirements.py | |
| parent | 79dbe94bb4ccd75888d57f388195a3ba4fa6117e (diff) | |
| parent | 349a7c5e0e2aeeac98fad789b0043a4bdfeed837 (diff) | |
| download | sqlalchemy-7b6fb299bb6b47dfeb22a5650b95af7fa0b35ec2.tar.gz | |
Merge "add backend agnostic UUID datatype" into main
Diffstat (limited to 'lib/sqlalchemy/testing/requirements.py')
| -rw-r--r-- | lib/sqlalchemy/testing/requirements.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/requirements.py b/lib/sqlalchemy/testing/requirements.py index e63a3e191..4fff6546e 100644 --- a/lib/sqlalchemy/testing/requirements.py +++ b/lib/sqlalchemy/testing/requirements.py @@ -722,6 +722,15 @@ class SuiteRequirements(Requirements): return exclusions.open() @property + def unicode_data_no_special_types(self): + """Target database/dialect can receive / deliver / compare data with + non-ASCII characters in plain VARCHAR, TEXT columns, without the need + for special "national" datatypes like NVARCHAR or similar. + + """ + return exclusions.open() + + @property def unicode_data(self): """Target database/dialect must support Python unicode objects with non-ASCII characters represented, delivered as bound parameters |
