Skip to content

Commit 1335eae

Browse files
oliricesamrose
andauthored
pg16 blocker - Update postgis (#1222)
* bump postgis 3.3.1 to 3.3.7 * fix: SET search_path on pg_tap test --------- Co-authored-by: Sam Rose <[email protected]>
1 parent 96a912f commit 1335eae

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

migrations/tests/extensions/01-postgis.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ grant all privileges on all sequences in schema tiger, tiger_data to postgres wi
1919
alter default privileges in schema tiger, tiger_data grant all on tables to postgres with grant option;
2020
alter default privileges in schema tiger, tiger_data grant all on routines to postgres with grant option;
2121
alter default privileges in schema tiger, tiger_data grant all on sequences to postgres with grant option;
22-
22+
SET search_path TO extensions, public, tiger, tiger_data;
2323
-- postgres role should have access
2424
set local role postgres;
2525
select tiger.pprint_addy(tiger.pagc_normalize_address('710 E Ben White Blvd, Austin, TX 78704'));

nix/ext/postgis.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ let
2222
in
2323
stdenv.mkDerivation rec {
2424
pname = "postgis";
25-
version = "3.3.2";
25+
version = "3.3.7";
2626

2727
outputs = [ "out" "doc" ];
2828

2929
src = fetchurl {
3030
url = "https://download.osgeo.org/postgis/source/postgis-${version}.tar.gz";
31-
sha256 = "sha256-miohnaAFoXMKOdGVmhx87GGbHvsAm2W+gP/CW60pkGg=";
31+
sha256 = "sha256-UHJKDd5JrcJT5Z4CTYsY/va+ToU0GUPG1eHhuXTkP84=";
3232
};
3333

3434
buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc pcre2.dev sfcgal ]

0 commit comments

Comments
 (0)