From 73969ba3e757373a73b4c163af338c6efbab5bef Mon Sep 17 00:00:00 2001 From: Rafi Shamim Date: Tue, 20 Apr 2021 12:27:27 -0400 Subject: [PATCH] Skip test_encrypt_server for CockroachDB --- tests/test_connection.py | 1 + tests/testutils.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/test_connection.py b/tests/test_connection.py index d8226892..5d5b3f6e 100755 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -1517,6 +1517,7 @@ class TestEncryptPassword(ConnectingTestCase): scope=self.conn, algorithm='md5'), 'md594839d658c28a357126f105b9cb14cfc') + @skip_if_crdb("password_encryption") @skip_before_libpq(10) @skip_before_postgres(10) def test_encrypt_server(self): diff --git a/tests/testutils.py b/tests/testutils.py index 2b5bbf9d..b53b2dc3 100644 --- a/tests/testutils.py +++ b/tests/testutils.py @@ -497,6 +497,7 @@ crdb_reasons = { "named cursor": 41412, "nested array": 32552, "notify": 41522, + "password_encryption": 42519, "range": 41282, "stored procedure": 1751, }