jonbjo commented on issue #193: URL: https://github.com/apache/arrow-flight-sql-postgresql/issues/193#issuecomment-2568446686
I am following the documentation here and can't get that to work either with PostgreSQL 15. Unable to locate package postgresql-15-pgdg-apache-arrow-flight-sql. https://arrow.apache.org/flight-sql-postgresql/current/install.html#debian-gnu-linux-and-ubuntu ``` FROM ubuntu:22.04 RUN apt update RUN apt install -y ca-certificates gpg lsb-release wget # Enable the PostgreSQL APT repository RUN wget -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --no-default-keyring --keyring /usr/share/keyrings/pgdg.gpg --import - RUN tee /etc/apt/sources.list.d/pgdg.sources <<EOF Types: deb URIs: http://apt.postgresql.org/pub/repos/apt Suites: $(lsb_release --codename --short)-pgdg Components: main Signed-By: /usr/share/keyrings/pgdg.gpg EOF # Enable the Apache Arrow APT repository RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb RUN rm apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb RUN apt update # Install postgresql-15-pgdg-apache-arrow-flight-sql RUN apt install -y postgresql-15-pgdg-apache-arrow-flight-sql ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
