From a45fbf66576ac2bbdea364c9c5f21b3e3e30a815 Mon Sep 17 00:00:00 2001 From: jkaczman Date: Tue, 15 Sep 2026 19:58:54 -0400 Subject: [PATCH 1/4] https://github.com/pgdogdev/pgdog/pull/1541 --- templates/config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/config.yaml b/templates/config.yaml index a2e7b2a..b0cc326 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -593,6 +593,9 @@ data: {{- if hasKey .Values.rewrite "primaryKey" }} primary_key = {{ .Values.rewrite.primaryKey | quote }} {{- end }} + {{- if hasKey .Values.rewrite "omniNonDeterministicFunctions" }} + primary_key = {{ .Values.rewrite.omniNonDeterministicFunctions | quote }} + {{- end }} {{- end }} {{- if .Values.multiTenant }} From 04aa22da89a9cb80086dbf1ae2c4df0a395742b5 Mon Sep 17 00:00:00 2001 From: jkaczman Date: Tue, 15 Sep 2026 19:59:51 -0400 Subject: [PATCH 2/4] typo --- templates/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/config.yaml b/templates/config.yaml index b0cc326..57a237b 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -594,7 +594,7 @@ data: primary_key = {{ .Values.rewrite.primaryKey | quote }} {{- end }} {{- if hasKey .Values.rewrite "omniNonDeterministicFunctions" }} - primary_key = {{ .Values.rewrite.omniNonDeterministicFunctions | quote }} + omni_non_deterministic_functions = {{ .Values.rewrite.omniNonDeterministicFunctions | quote }} {{- end }} {{- end }} From 3e7b19ae48862ab28cc2d4166188d0287cb7d5d7 Mon Sep 17 00:00:00 2001 From: jkaczman Date: Wed, 16 Sep 2026 15:13:18 -0400 Subject: [PATCH 3/4] Bump chart.yaml version --- Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chart.yaml b/Chart.yaml index 02dd109..49241e5 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,4 +1,4 @@ apiVersion: v1 name: pgdog -version: v0.78 +version: v0.79 appVersion: "v0.1.58" From 135618e1583fdadbc1e98a0d47900d89f533fe16 Mon Sep 17 00:00:00 2001 From: jkaczman Date: Thu, 17 Sep 2026 06:04:09 -0400 Subject: [PATCH 4/4] Remove omni prefix from key --- templates/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/config.yaml b/templates/config.yaml index 57a237b..5d03591 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -593,8 +593,8 @@ data: {{- if hasKey .Values.rewrite "primaryKey" }} primary_key = {{ .Values.rewrite.primaryKey | quote }} {{- end }} - {{- if hasKey .Values.rewrite "omniNonDeterministicFunctions" }} - omni_non_deterministic_functions = {{ .Values.rewrite.omniNonDeterministicFunctions | quote }} + {{- if hasKey .Values.rewrite "nonDeterministicFunctions" }} + non_deterministic_functions = {{ .Values.rewrite.nonDeterministicFunctions | quote }} {{- end }} {{- end }}