Browse Source

Add the sslinfo extension for tests

This requires that Postgres be compiled with SSL.  I think this is
fairly standard these days.
David N. Welton 10 years ago
parent
commit
76c37666ad
1 changed files with 3 additions and 0 deletions
  1. 3 0
      test_data/test_schema.sql

+ 3 - 0
test_data/test_schema.sql

@@ -45,6 +45,9 @@ GRANT ALL ON DATABASE epgsql_test_db2 to epgsql_test;
 
 CREATE TABLE schema_version (version varchar);
 
+-- This requires Postgres to be compiled with SSL:
+-- http://www.postgresql.org/docs/9.4/static/sslinfo.html
+CREATE EXTENSION sslinfo;
 CREATE EXTENSION hstore;
 CREATE EXTENSION postgis;