Merge pull request #25927 from y-yagi/remove_needless_warning_for_hstore

remove needless warning for hstore
This commit is contained in:
Sean Griffin 2017-01-03 16:15:58 -05:00 committed by GitHub
commit 1511f0e738
1 changed files with 0 additions and 5 deletions

View File

@ -111,11 +111,6 @@ namespace :db do
config = ARTest.config["connections"]["postgresql"]
%x( createdb -E UTF8 -T template0 #{config["arunit"]["database"]} )
%x( createdb -E UTF8 -T template0 #{config["arunit2"]["database"]} )
# prepare hstore
if %x( createdb --version ).strip.gsub(/(.*)(\d\.\d\.\d)$/, "\\2") < "9.1.0"
puts "Please prepare hstore data type. See http://www.postgresql.org/docs/current/static/hstore.html"
end
end
desc "Drop the PostgreSQL test databases"