This is an automated email from the ASF dual-hosted git repository.
yzheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 30b9c4cc Sync psql persistence (#1187)
30b9c4cc is described below
commit 30b9c4cce791ec385a82961407ea983e26776c86
Author: MonkeyCanCode <[email protected]>
AuthorDate: Wed Mar 19 08:34:15 2025 -0500
Sync psql persistence (#1187)
* sync persistence config when using Postgres
* sync persistence config when using Postgres
* sync persistence config when using Postgres
* Revert change for 0.9.0
---
site/content/in-dev/unreleased/metastores.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/site/content/in-dev/unreleased/metastores.md
b/site/content/in-dev/unreleased/metastores.md
index ecbb84ba..1b8e1d32 100644
--- a/site/content/in-dev/unreleased/metastores.md
+++ b/site/content/in-dev/unreleased/metastores.md
@@ -121,6 +121,8 @@ The following shows a sample configuration for integrating
Polaris with Postgres
<property name="jakarta.persistence.jdbc.password" value="postgres"/>
<property name="jakarta.persistence.schema-generation.database.action"
value="create"/>
<property name="eclipselink.persistence-context.flush-mode" value="auto"/>
+ <property name="eclipselink.session.customizer"
value="org.apache.polaris.extension.persistence.impl.eclipselink.PolarisEclipseLinkSessionCustomizer"/>
+ <property name="eclipselink.transaction.join-existing" value="true"/>
</properties>
</persistence-unit>
```