From 7dd4deea9e7f7a110ff2f3af6fb4119496f0e107 Mon Sep 17 00:00:00 2001 From: Dan Rademacher Date: Tue, 14 Nov 2023 16:34:15 -0800 Subject: [PATCH] Negative year date functions update This is for https://github.com/OpenHistoricalMap/issues/issues/634 --- images/tiler-db/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/tiler-db/Dockerfile b/images/tiler-db/Dockerfile index d6869fc1..c40930b2 100644 --- a/images/tiler-db/Dockerfile +++ b/images/tiler-db/Dockerfile @@ -7,8 +7,8 @@ RUN mkdir -p /docker-entrypoint-initdb.d COPY ./config/update_db.sh /docker-entrypoint-initdb.d COPY ./config/update_postgresql.sh /docker-entrypoint-initdb.d -RUN git clone https://github.com/Open-Historical-Map-Labs/DateFunctions-plpgsql.git /usr/local/datefunctions +RUN git clone https://github.com/OpenHistoricalMap/DateFunctions-plpgsql.git /usr/local/datefunctions WORKDIR /usr/local/datefunctions -# deploy invalid datetime parsing fix -RUN git checkout 02618f4a8c7ef75bab53fb9b1c75e7aff3d98a2c +# deploy improvements to negative year handling +RUN git checkout d9f06a4ac0674881247c38b29ba58ff1d167b7bb RUN cp datefunctions.sql /docker-entrypoint-initdb.d/datefunctions.sql