Просмотр исходного кода

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 лет назад
Родитель
Сommit
76c37666ad
1 измененных файлов с 3 добавлено и 0 удалено
  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;