python-sqlalchemy/Expect_ordering_NULLs_to_work.patch
2020-12-03 19:28:57 +08:00

28 lines
942 B
Diff

From 8b35ba54ab31aab13a34c360a31d014da1f5c809 Mon Sep 17 00:00:00 2001
From: Nils Philippsen <nils@tiptoe.de>
Date: Thu, 17 Oct 2019 18:22:09 +0200
Subject: [PATCH] Expect ordering NULLs to work on sqlite >= 3.30.
Signed-off-by: Nils Philippsen <nils@tiptoe.de>
---
test/requirements.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/requirements.py b/test/requirements.py
index 5906432..deb4ced 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -727,7 +727,8 @@ class DefaultRequirements(SuiteRequirements):
@property
def nullsordering(self):
"""Target backends that support nulls ordering."""
- return fails_on_everything_except("postgresql", "oracle", "firebird")
+ return fails_on_everything_except("postgresql", "oracle", "firebird",
+ "sqlite >= 3.30.0")
@property
def reflects_pk_names(self):
--
2.19.1