Skip to content

Commit d8a1b34

Browse files
Merge pull request #6414 from EnterpriseDB/release/2025-01-17a
Release: 2025-01-17a
2 parents 3207f3e + e2bcf79 commit d8a1b34

File tree

16 files changed

+127
-108
lines changed

16 files changed

+127
-108
lines changed

advocacy_docs/edb-postgres-ai/ai-accelerator/compatibility.mdx

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,16 @@ description: Compatibility information for the EDB Postgres AI - AI Accelerator
1010

1111
* Ubuntu 22.04LTS on X86/64
1212
* Debian 12 (Bookworm) on X86/64
13+
* Redhat/RHEL 9/8 on X86/64
1314

1415
### pgfs
1516

1617
* Ubuntu 22.04LTS on X86/64
1718
* Debian 12 (Bookworm) on X86/64
19+
* Redhat/RHEL 9/8 on X86/64
1820

1921
## Not currently supported
2022

21-
* Redhat/RHEL 9/8 on X86/64
2223
* ARM architectures
2324
* SLES
2425
* Debian before the current version 12

advocacy_docs/migrating/oracle/oracle_epas_comparison/app_devel_capabilities.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ EDB focuses on the most popular functions in packages. For some packages, not al
4040
| Package name | Package description |
4141
|----------------|---------------------|
4242
| DBMS_ALERT | Functions that allow asynchronous notification of database events by way of an alert. Using this package and triggers, an application can notify itself whenever values of interest in the database are changed. |
43+
| DBMS_ASSERT | Provides a function that lets you sanitize and validate user input to help guard against SQL injections in applications. |
4344
| DBMS_AQ | Database-integrated asynchronous message queuing provides a flexible mechanism for integrating applications across the enterprise by communicating activities and exchanging a variety of information payloads. |
4445
| DBMS_AQADM | Provides procedures to create and manage queues and queue tables.|
4546
| DBMS_CRYPTO | Provides functions to encrypt and decrypt stored data. |
@@ -57,6 +58,7 @@ EDB focuses on the most popular functions in packages. For some packages, not al
5758
| DBMS_SQL | Permits the use of dynamic SQL in procedures to allow applications to run SQL statements with unknown parameters (such as table name) until runtime. |
5859
| DBMS_SESSION | Functions with the ability to enable and disable roles. |
5960
| DBMS_UTILITY | A collection of functions for getting information about various runtime operations and metadata from the database. |
61+
| DBMS_XMLDOM | A collection of functions for creating DOM documents. |
6062
| HTF | A collection of functions for generating HTML tags. |
6163
| HTP | A collection of procedures for generating HTML tags. |
6264
| UTL_ENCODE | Functions to perform Base64 encoding and decoding of data intended for transport between hosts. |

advocacy_docs/migrating/oracle/oracle_epas_comparison/non_relational_data.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: "Comparison of nonrelational data support"
88
| Spatial/location/graph | Yes | Yes |
99
| JSON support | Yes <br/> Text based | Yes <br/> Text and high-performance binary based |
1010
| Key-value store | NoSQL database | Yes |
11-
| Support for XML namespaces, DOM, XQuery, SQL/XML, and XSLT | XML DB | No |
11+
| Support for XML namespaces, DOM, XQuery, SQL/XML, and XSLT | XML DB | Partial <br/> XML DOM support is provided via the DBMS_XMLDOM package |
1212
| Compression (tables, files, network, and backups) | Yes | No <br/> Postgres performs compression of TOASTED rows |
1313
| Partitioning | Yes | Yes |
1414
| Hadoop integration | Yes <br/> ETL via Data Integrator Application Adapter for Hadoop | Yes <br/> Real-time join with relational data with HDFS Foreign Data Wrapper |

advocacy_docs/migrating/oracle/oracle_epas_comparison/notable_differences.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A number of differences between Oracle and EDB Postgres Advanced Server are eith
66

77
| Oracle Enterprise | EDB Postgres Advanced Server |
88
|------------------------------|------------------------------|
9-
| MERGE | Yes <br/> EPAS 15 adds support for WHERE clauses to the UPDATE and INSERT of MERGE command to be more compatible with Oracle than community PostgreSQL. <br/> Additional Oracle compatible syntax planned for EPAS 16 |
9+
| MERGE | Yes <br/> EPAS adds support for WHERE clauses to the UPDATE and INSERT of MERGE commands along with FORALL...MERGE commands for compatibility with Oracle beyond community PostgreSQL. |
1010
| Advanced queuing | Yes |
1111
| Nested procedures/functions | Yes |
1212
| Pipelined functions | No <br/> Pipelined functions are used for table functions. Table functions can be implemented in Postgres via SETOF returning functions. In Postgres, data is returned only after the function completes. |

advocacy_docs/pg_extensions/wait_states/installing.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ To install EDB Wait States on any Linux operating system except Debian or Ubuntu
3535
For example, to install EDB Wait States for EDB Postgres Advanced Server 16 on a RHEL 9 platform:
3636

3737
```shell
38-
sudo dnf -y install edb-as16-server-edb_wait_states
38+
sudo dnf -y install edb-as16-server-edb-wait-states
3939
```
4040

4141
1. To launch the worker, register it in the `postgresql.conf` file using the `shared_preload_libraries` parameter. For example:

advocacy_docs/supported-open-source/postgresql/uninstalling.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ displays a message confirming that it didn't remove the data directory or user.
6262
1. Invoke the uninstaller:
6363

6464
```
65-
open /Library/PostgreSQL/<version>/uninstall-postgresql.app
65+
open /Library/PostgreSQL/<version>/uninstall-postgresql.app/Contents/MacOS/installbuilder.sh
6666
```
6767

6868
Where `<version>` is the version of PostgreSQL you installed.

package-lock.json

+99
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"install-docs:build": "docker compose -f docker/docker-compose.install-template.yaml run --rm install-docs-template-renderer",
2121
"install-docs:deploy": "docker compose -f docker/docker-compose.install-template.yaml run --rm install-docs-template-renderer sh -c 'npm i && node deploy.mjs product_docs/docs advocacy_docs'",
2222
"install-docs:rebuild-docker-image": "docker compose -f docker/docker-compose.install-template.yaml build --pull --no-cache",
23+
"mergeq": "mergeq",
2324
"links:check": "docker compose -f docker/docker-compose.check-links.yaml run --rm docs-link-checker",
2425
"links:rebuild-docker-image": "docker compose -f docker/docker-compose.check-links.yaml build --pull --no-cache",
2526
"logs": "docker compose -f docker/docker-compose.quickstart.yaml logs -f",
@@ -88,6 +89,7 @@
8889
"react-instantsearch": "^7.8.1",
8990
"rehype-parse": "^7.0.1",
9091
"relgen": "file:tools/automation/generators/relgen",
92+
"mergeq": "file:tools/user/mergeq",
9193
"remark-admonitions": "github:josh-heyer/remark-admonitions",
9294
"sass": "^1.77.6",
9395
"truncate-utf8-bytes": "^1.0.2",

product_docs/docs/epas/16/reference/database_administrator_reference/01_index_advisor_components.mdx

-42
This file was deleted.

product_docs/docs/epas/16/reference/oracle_compatibility_reference/epas_compat_sql/01_alter_capture_privilege.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ EDB Postgres Advanced Server includes extra syntax not offered by Oracle with th
66

77
## Name
88

9-
`ALTER CAPTURE PRIVILEGES POLICY` &mdash; Allows a superuser or a user with `CAPTURE_ADMIN` role to modify the attributes of the capture privilege poilicy.
9+
`ALTER CAPTURE PRIVILEGES POLICY` &mdash; Allows a superuser or a user with `CAPTURE_ADMIN` role to modify the attributes of the capture privilege policy.
1010

1111
## Synopsis
1212

product_docs/docs/epas/17/reference/database_administrator_reference/01_index_advisor_components.mdx

-42
This file was deleted.

product_docs/docs/epas/17/reference/oracle_compatibility_reference/epas_compat_sql/01_alter_capture_privilege.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ EDB Postgres Advanced Server includes extra syntax not offered by Oracle with th
66

77
## Name
88

9-
`ALTER CAPTURE PRIVILEGES POLICY` &mdash; Allows a superuser or a user with `CAPTURE_ADMIN` role to modify the attributes of the capture privilege poilicy.
9+
`ALTER CAPTURE PRIVILEGES POLICY` &mdash; Allows a superuser or a user with `CAPTURE_ADMIN` role to modify the attributes of the capture privilege policy.
1010

1111
## Synopsis
1212

0 commit comments

Comments
 (0)