summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2018-06-25 23:51:07 -0400
committerGerrit Code Review <gerrit@ci.zzzcomputing.com>2018-06-25 23:51:07 -0400
commit1827af37cfc7494143ae290da435029043af2372 (patch)
tree06579b44be146f6d56f4645af609a97a27331572
parentd5ee9957f9027ecec37178d3327f01de0f8c7b96 (diff)
parent40a5d0a4b006780167976b296984eb9790f3df7f (diff)
downloadsqlalchemy-1827af37cfc7494143ae290da435029043af2372.tar.gz
Merge "fix TypeReflectionTest for sqlite 3.24"
-rw-r--r--doc/build/changelog/unreleased_12/pr452.rst7
-rw-r--r--test/dialect/test_sqlite.py2
2 files changed, 8 insertions, 1 deletions
diff --git a/doc/build/changelog/unreleased_12/pr452.rst b/doc/build/changelog/unreleased_12/pr452.rst
new file mode 100644
index 000000000..471b203dd
--- /dev/null
+++ b/doc/build/changelog/unreleased_12/pr452.rst
@@ -0,0 +1,7 @@
+.. change::
+ :tags: bug, sqlite
+ :versions: 1.3.0b1
+
+ Fixed issue in test suite where SQLite 3.24 added a new reserved word that
+ conflicted with a usage in TypeReflectionTest. Pull request courtesy Nils
+ Philippsen.
diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py
index 4c462aed1..d2d563208 100644
--- a/test/dialect/test_sqlite.py
+++ b/test/dialect/test_sqlite.py
@@ -1637,7 +1637,7 @@ class TypeReflectionTest(fixtures.TestBase):
("BLOBBER", sqltypes.NullType()),
("DOUBLE PRECISION", sqltypes.REAL()),
("FLOATY", sqltypes.REAL()),
- ("NOTHING WE KNOW", sqltypes.NUMERIC()),
+ ("SOMETHING UNKNOWN", sqltypes.NUMERIC()),
]
def _fixture_as_string(self, fixture):