summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
authorHong Minhee <minhee@dahlia.kr>2012-08-31 07:49:01 +0900
committerHong Minhee <minhee@dahlia.kr>2012-08-31 07:49:01 +0900
commit4acf7df4f5dadd42abff683d665674c768fffdc3 (patch)
tree7483d430b448faea77c5f40e5d4d7244c44fce70 /test/dialect/test_postgresql.py
parent68b35ac05b9e16dda86e727a40b02611a89de48a (diff)
downloadsqlalchemy-4acf7df4f5dadd42abff683d665674c768fffdc3.tar.gz
Add a version test for EnterpriseDB
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r--test/dialect/test_postgresql.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py
index fda4002ef..371a8c018 100644
--- a/test/dialect/test_postgresql.py
+++ b/test/dialect/test_postgresql.py
@@ -1751,7 +1751,10 @@ class MiscTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL):
'GCC gcc (GCC) 4.1.2 20070925 (Red Hat 4.1.2-33)', (8, 3,
8)),
('PostgreSQL 8.5devel on x86_64-unknown-linux-gnu, '
- 'compiled by GCC gcc (GCC) 4.4.2, 64-bit', (8, 5))]:
+ 'compiled by GCC gcc (GCC) 4.4.2, 64-bit', (8, 5)),
+ ('EnterpriseDB 9.1.2.2 on x86_64-unknown-linux-gnu, '
+ 'compiled by gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50), '
+ '64-bit', (9, 1, 2))]:
eq_(testing.db.dialect._get_server_version_info(MockConn(string)),
version)