如何在PostgreSQL中修复丢失的PostGIS SRID?
发布时间:2020-12-13 16:17:36 所属栏目:百科 来源:网络整理
导读:运行我的Rspec测试套件时收到以下错误: PG::InternalError: ERROR: GetProj4StringSPI: Cannot find SRID (4326) in spatial_ref_sys 我知道我启用了PostGIS扩展.我该如何解决? 问题是有些东西从spatial_ref_sys表中删除了行. 就我而言,问题出在我的spec_h
运行我的Rspec测试套件时收到以下错误:
PG::InternalError: ERROR: GetProj4StringSPI: Cannot find SRID (4326) in spatial_ref_sys 我知道我启用了PostGIS扩展.我该如何解决?
问题是有些东西从spatial_ref_sys表中删除了行.
就我而言,问题出在我的spec_helper.rb中的DatabaseCleaner配置中.它被配置为删除/截断表. 要防止该行为,请更改配置.对我来说,那是: config.before(:suite) do DatabaseCleaner.strategy = :deletion,{:except => %w[spatial_ref_sys]} DatabaseCleaner.clean_with :truncation,{:except => %w[spatial_ref_sys]} end 现在,您需要重新生成该表中的行.使用名为spatial_ref_sys.sql的脚本来执行此操作. 我使用Postgres.app,所以运行该脚本的命令是: /Applications/Postgres.app/Contents/MacOS/bin/psql -d database_name -f /Applications/Postgres.app/Contents/MacOS/share/contrib/postgis-2.0/spatial_ref_sys.sql 您的命令可能略有不同. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |