Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

postgresql11-server-11.7-lp152.2.1 RPM for armv7hl

From OpenSuSE Ports Leap 15.2 for armv7hl

Name: postgresql11-server Distribution: openSUSE Leap 15.2
Version: 11.7 Vendor: openSUSE
Release: lp152.2.1 Build date: Wed Jun 10 17:51:44 2020
Group: Productivity/Databases/Servers Build host: armbuild10
Size: 19735995 Source RPM: postgresql11-11.7-lp152.2.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://www.postgresql.org/
Summary: The Programs Needed to Create and Run a PostgreSQL Server
PostgreSQL is an advanced object-relational database management system
that supports an extended subset of the SQL standard, including
transactions, foreign keys, sub-queries, triggers, and user-defined
types and functions.

This package includes the programs needed to create and run a
PostgreSQL server, which will in turn allow you to create and maintain
PostgreSQL databases.

Provides

Requires

License

PostgreSQL

Changelog

* Mon Jun 08 2020 Max Lin <mlin@suse.com>
  - Follow postgresql change for disable JIT support until support
    status of clang has been clarified
* Sat Feb 15 2020 Marcus Rueckert <mrueckert@suse.de>
  - update to 11.7: (CVE-2020-1720)
    https://www.postgresql.org/about/news/2011/
    https://www.postgresql.org/docs/11/release-11-7.html
* Mon Jan 27 2020 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Disable explicitly armv8 CRC for %arm, as we use some armv8
    workers for armv6/7 builds which is confusing configure script
* Fri Dec 20 2019 Marcus Rueckert <mrueckert@suse.de>
  - update to 11.6:
    https://www.postgresql.org/about/news/1994/
    https://www.postgresql.org/docs/11/release-11-6.html
* Tue Oct 22 2019 Marcus Rueckert <mrueckert@suse.de>
  - add requires to the server-devel package for the libs that are
    returned by pg_config --libs
* Tue Oct 22 2019 Marcus Rueckert <mrueckert@suse.de>
  - disable building of the libraries here. Will now be provided from
    the 12.0 package
* Mon Aug 12 2019 Reinhard Max <max@suse.com>
  - Update to 11.5:
    * https://www.postgresql.org/about/news/1960/
    * https://www.postgresql.org/docs/11/release-11-5.html
    * CVE-2019-10208, bsc#1145092: TYPE in pg_temp executes arbitrary
      SQL during SECURITY DEFINER execution.
    * CVE-2019-10209, bsc#1145091: Memory disclosure in cross-type
      comparison for hashed subplan.
* Fri Aug 02 2019 Martin Liška <mliska@suse.cz>
  - Use FAT LTO objects in order to provide proper static library.
* Fri Jun 21 2019 Marcus Rueckert <mrueckert@suse.de>
  - update to 11.4:
    * https://www.postgresql.org/docs/11/release-11-4.html
    * https://www.postgresql.org/about/news/1949/
    * CVE-2019-10164 bsc#1138034: Stack-based buffer overflow via
      setting a password
* Fri May 10 2019 Reinhard Max <max@suse.com>
  - Update to 11.3:
    * https://www.postgresql.org/docs/11/release-11-3.html
    * https://www.postgresql.org/about/news/1939/
    * CVE-2019-10130, bsc#1134689: Prevent row-level security
      policies from being bypassed via selectivity estimators.
    * CVE-2019-10129, bsc#1134684: Avoid access to already-freed
      memory during partition routing error reports.
* Tue Feb 19 2019 Reinhard Max <max@suse.com>
  - Update to 11.2:
    * https://www.postgresql.org/docs/11/release-11-2.html
    * https://www.postgresql.org/about/news/1920/
    * By default, panic instead of retrying after fsync() failure,
      to avoid possible data corruption.
    * Fix handling of unique indexes with INCLUDE columns on
      partitioned tables.
    * Ensure that NOT NULL constraints of a partitioned table are
      honored within its partitions.
    * Numerous other bug fixes.
  - Overhaul README.SUSE
* Fri Jan 11 2019 Reinhard Max <max@suse.com>
  - The release tags between the main package build and libs might
    be different, but that's not a problem, so we can relax the tight
    dependency of server-devel on devel.
  - Adjust the line between headers going to devel and server-devel.
    Now everything under /usr/include/pgsql/server is in server-devel
    and the rest of /usr/include/pgsql is in devel (bsc#1120035).
* Mon Dec 03 2018 Marcus Rueckert <mrueckert@suse.de>
  - move the server-devel package definition into the buildmain
    section
* Tue Nov 20 2018 Guillaume GARDET <guillaume.gardet@opensuse.org>
  - Add sha256 file to list of sources
  - Update v11.1 files from upstream
* Thu Nov 08 2018 Reinhard Max <max@suse.com>
  - Update to 11.1:
    * CVE-2018-16850, bsc#1114837: Improper quoting of transition
      table names when pg_dump emits CREATE TRIGGER can cause
      privilege escalation
    * Numerous bug fixes, see the release notes:
      https://www.postgresql.org/docs/current/release-11-1.html
    * Remove unneeded library dependencies from PGXS.
* Mon Oct 22 2018 Reinhard Max <max@suse.com>
  - Update to 11.0.
    * https://www.postgresql.org/about/news/1894/
    * https://www.postgresql.org/docs/11/static/release-11.html
  - Improvements to partitioning functionality, including:
    * Add support for partitioning by a hash key
    * Add support for PRIMARY KEY, FOREIGN KEY, indexes, and triggers
      on partitioned tables.
    * Allow creation of a “default” partition for storing data that
      does not match any of the remaining partitions.
    * UPDATE statements that change a partition key column now cause
      affected rows to be moved to the appropriate partitions.
    * Improve SELECT performance through enhanced partition
      elimination strategies during query planning and execution.
  - Improvements to parallelism, including:
    * CREATE INDEX can now use parallel processing while building a
      B-tree index.
    * Parallelization is now possible in CREATE TABLE ... AS, CREATE
      MATERIALIZED VIEW, and certain queries using UNION.
    * Parallelized hash joins and parallelized sequential scans now
      perform better.
  - SQL stored procedures that support embedded transactions.
  - Optional Just-in-Time (JIT) compilation for some SQL code,
    speeding evaluation of expressions (new subpackage: -llvmjit).
  - Window functions now support all framing options shown in the
    SQL:2011 standard, including RANGE distance PRECEDING/FOLLOWING,
    GROUPS mode, and frame exclusion options.
  - Covering indexes can now be created, using the INCLUDE clause of
    CREATE INDEX.
  - Many other useful performance improvements, including the ability
    to avoid a table rewrite for ALTER TABLE ... ADD COLUMN with a
    non-null column default.
  - Split a new -server-devel subpackage from -devel.
* Fri Aug 10 2018 mrueckert@suse.de
  - update to 11 beta3
    https://www.postgresql.org/docs/11/static/release-11.html
    https://www.postgresql.org/about/news/1878/
    CVE-2018-10925 CVE-2018-10915
* Mon Jul 02 2018 mrueckert@suse.de
  - initial package

Files

/etc/alternatives/initdb
/etc/alternatives/pg_controldata
/etc/alternatives/pg_ctl
/etc/alternatives/pg_resetwal
/etc/alternatives/pg_waldump
/etc/alternatives/postgres
/etc/alternatives/postmaster
/usr/bin/initdb
/usr/bin/pg_controldata
/usr/bin/pg_ctl
/usr/bin/pg_resetwal
/usr/bin/pg_waldump
/usr/bin/postgres
/usr/bin/postmaster
/usr/lib/postgresql
/usr/lib/postgresql11
/usr/lib/postgresql11/bin/initdb
/usr/lib/postgresql11/bin/pg_controldata
/usr/lib/postgresql11/bin/pg_ctl
/usr/lib/postgresql11/bin/pg_resetwal
/usr/lib/postgresql11/bin/pg_waldump
/usr/lib/postgresql11/bin/postgres
/usr/lib/postgresql11/bin/postmaster
/usr/lib/postgresql11/lib
/usr/lib/postgresql11/lib/ascii_and_mic.so
/usr/lib/postgresql11/lib/cyrillic_and_mic.so
/usr/lib/postgresql11/lib/dict_snowball.so
/usr/lib/postgresql11/lib/euc2004_sjis2004.so
/usr/lib/postgresql11/lib/euc_cn_and_mic.so
/usr/lib/postgresql11/lib/euc_jp_and_sjis.so
/usr/lib/postgresql11/lib/euc_kr_and_mic.so
/usr/lib/postgresql11/lib/euc_tw_and_big5.so
/usr/lib/postgresql11/lib/latin2_and_win1250.so
/usr/lib/postgresql11/lib/latin_and_mic.so
/usr/lib/postgresql11/lib/libpqwalreceiver.so
/usr/lib/postgresql11/lib/pgoutput.so
/usr/lib/postgresql11/lib/plpgsql.so
/usr/lib/postgresql11/lib/utf8_and_ascii.so
/usr/lib/postgresql11/lib/utf8_and_big5.so
/usr/lib/postgresql11/lib/utf8_and_cyrillic.so
/usr/lib/postgresql11/lib/utf8_and_euc2004.so
/usr/lib/postgresql11/lib/utf8_and_euc_cn.so
/usr/lib/postgresql11/lib/utf8_and_euc_jp.so
/usr/lib/postgresql11/lib/utf8_and_euc_kr.so
/usr/lib/postgresql11/lib/utf8_and_euc_tw.so
/usr/lib/postgresql11/lib/utf8_and_gb18030.so
/usr/lib/postgresql11/lib/utf8_and_gbk.so
/usr/lib/postgresql11/lib/utf8_and_iso8859.so
/usr/lib/postgresql11/lib/utf8_and_iso8859_1.so
/usr/lib/postgresql11/lib/utf8_and_johab.so
/usr/lib/postgresql11/lib/utf8_and_sjis.so
/usr/lib/postgresql11/lib/utf8_and_sjis2004.so
/usr/lib/postgresql11/lib/utf8_and_uhc.so
/usr/lib/postgresql11/lib/utf8_and_win.so
/usr/share/locale/cs/LC_MESSAGES/initdb-11.mo
/usr/share/locale/cs/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/cs/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/cs/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/cs/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/de/LC_MESSAGES/initdb-11.mo
/usr/share/locale/de/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/de/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/de/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/de/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/de/LC_MESSAGES/postgres-11.mo
/usr/share/locale/es/LC_MESSAGES/initdb-11.mo
/usr/share/locale/es/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/es/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/es/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/es/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/es/LC_MESSAGES/postgres-11.mo
/usr/share/locale/fr/LC_MESSAGES/initdb-11.mo
/usr/share/locale/fr/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/fr/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/fr/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/fr/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/fr/LC_MESSAGES/postgres-11.mo
/usr/share/locale/he/LC_MESSAGES/initdb-11.mo
/usr/share/locale/he/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/it/LC_MESSAGES/initdb-11.mo
/usr/share/locale/it/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/it/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/it/LC_MESSAGES/postgres-11.mo
/usr/share/locale/ja/LC_MESSAGES/initdb-11.mo
/usr/share/locale/ja/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/ja/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/ja/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/ja/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/ja/LC_MESSAGES/postgres-11.mo
/usr/share/locale/ko/LC_MESSAGES/initdb-11.mo
/usr/share/locale/ko/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/ko/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/ko/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/ko/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/ko/LC_MESSAGES/postgres-11.mo
/usr/share/locale/pl/LC_MESSAGES/initdb-11.mo
/usr/share/locale/pl/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/pl/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/pl/LC_MESSAGES/postgres-11.mo
/usr/share/locale/pt_BR/LC_MESSAGES/initdb-11.mo
/usr/share/locale/pt_BR/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/pt_BR/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/ru/LC_MESSAGES/initdb-11.mo
/usr/share/locale/ru/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/ru/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/ru/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/ru/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/ru/LC_MESSAGES/postgres-11.mo
/usr/share/locale/sv/LC_MESSAGES/initdb-11.mo
/usr/share/locale/sv/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/sv/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/sv/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/sv/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/sv/LC_MESSAGES/postgres-11.mo
/usr/share/locale/tr/LC_MESSAGES/initdb-11.mo
/usr/share/locale/tr/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/tr/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/tr/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/tr/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/tr/LC_MESSAGES/postgres-11.mo
/usr/share/locale/vi/LC_MESSAGES/initdb-11.mo
/usr/share/locale/vi/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/vi/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/zh_CN/LC_MESSAGES/initdb-11.mo
/usr/share/locale/zh_CN/LC_MESSAGES/pg_controldata-11.mo
/usr/share/locale/zh_CN/LC_MESSAGES/pg_ctl-11.mo
/usr/share/locale/zh_CN/LC_MESSAGES/pg_resetwal-11.mo
/usr/share/locale/zh_CN/LC_MESSAGES/pg_waldump-11.mo
/usr/share/locale/zh_CN/LC_MESSAGES/postgres-11.mo
/usr/share/man/man1/initdb.1pg11.gz
/usr/share/man/man1/pg_controldata.1pg11.gz
/usr/share/man/man1/pg_ctl.1pg11.gz
/usr/share/man/man1/pg_resetwal.1pg11.gz
/usr/share/man/man1/pg_waldump.1pg11.gz
/usr/share/man/man1/postgres.1pg11.gz
/usr/share/man/man1/postmaster.1pg11.gz
/usr/share/postgresql11
/usr/share/postgresql11/conversion_create.sql
/usr/share/postgresql11/errcodes.txt
/usr/share/postgresql11/extension
/usr/share/postgresql11/extension/plpgsql--1.0.sql
/usr/share/postgresql11/extension/plpgsql--unpackaged--1.0.sql
/usr/share/postgresql11/extension/plpgsql.control
/usr/share/postgresql11/information_schema.sql
/usr/share/postgresql11/pg_hba.conf.sample
/usr/share/postgresql11/pg_ident.conf.sample
/usr/share/postgresql11/postgres.bki
/usr/share/postgresql11/postgres.description
/usr/share/postgresql11/postgres.shdescription
/usr/share/postgresql11/postgresql.conf.sample
/usr/share/postgresql11/psqlrc.sample
/usr/share/postgresql11/recovery.conf.sample
/usr/share/postgresql11/snowball_create.sql
/usr/share/postgresql11/sql_features.txt
/usr/share/postgresql11/system_views.sql
/usr/share/postgresql11/timezonesets
/usr/share/postgresql11/timezonesets/Africa.txt
/usr/share/postgresql11/timezonesets/America.txt
/usr/share/postgresql11/timezonesets/Antarctica.txt
/usr/share/postgresql11/timezonesets/Asia.txt
/usr/share/postgresql11/timezonesets/Atlantic.txt
/usr/share/postgresql11/timezonesets/Australia
/usr/share/postgresql11/timezonesets/Australia.txt
/usr/share/postgresql11/timezonesets/Default
/usr/share/postgresql11/timezonesets/Etc.txt
/usr/share/postgresql11/timezonesets/Europe.txt
/usr/share/postgresql11/timezonesets/India
/usr/share/postgresql11/timezonesets/Indian.txt
/usr/share/postgresql11/timezonesets/Pacific.txt
/usr/share/postgresql11/tsearch_data
/usr/share/postgresql11/tsearch_data/danish.stop
/usr/share/postgresql11/tsearch_data/dutch.stop
/usr/share/postgresql11/tsearch_data/english.stop
/usr/share/postgresql11/tsearch_data/finnish.stop
/usr/share/postgresql11/tsearch_data/french.stop
/usr/share/postgresql11/tsearch_data/german.stop
/usr/share/postgresql11/tsearch_data/hungarian.stop
/usr/share/postgresql11/tsearch_data/hunspell_sample.affix
/usr/share/postgresql11/tsearch_data/hunspell_sample_long.affix
/usr/share/postgresql11/tsearch_data/hunspell_sample_long.dict
/usr/share/postgresql11/tsearch_data/hunspell_sample_num.affix
/usr/share/postgresql11/tsearch_data/hunspell_sample_num.dict
/usr/share/postgresql11/tsearch_data/ispell_sample.affix
/usr/share/postgresql11/tsearch_data/ispell_sample.dict
/usr/share/postgresql11/tsearch_data/italian.stop
/usr/share/postgresql11/tsearch_data/norwegian.stop
/usr/share/postgresql11/tsearch_data/portuguese.stop
/usr/share/postgresql11/tsearch_data/russian.stop
/usr/share/postgresql11/tsearch_data/spanish.stop
/usr/share/postgresql11/tsearch_data/swedish.stop
/usr/share/postgresql11/tsearch_data/synonym_sample.syn
/usr/share/postgresql11/tsearch_data/thesaurus_sample.ths
/usr/share/postgresql11/tsearch_data/turkish.stop
/var/lib/pgsql


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:35:51 2024