Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[bugfix] fix the boolean value on default operator result always default value #880

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
Loading
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 2 charts/pgcat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ maintainers:
- name: PostgresML
email: team@postgresml.org
appVersion: "1.2.0"
version: 0.2.5
version: 0.2.6
6 changes: 3 additions & 3 deletions 6 charts/pgcat/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ stringData:
load_balancing_mode = {{ default "random" $pool.load_balancing_mode | quote }}
default_role = {{ default "any" $pool.default_role | quote }}
prepared_statements_cache_size = {{ default 500 $pool.prepared_statements_cache_size }}
query_parser_enabled = {{ default true $pool.query_parser_enabled }}
query_parser_read_write_splitting = {{ default true $pool.query_parser_read_write_splitting }}
primary_reads_enabled = {{ default true $pool.primary_reads_enabled }}
query_parser_enabled = {{ ne $pool.query_parser_enabled false }}
query_parser_read_write_splitting = {{ ne $pool.query_parser_read_write_splitting false }}
primary_reads_enabled = {{ ne $pool.primary_reads_enabled false }}
sharding_function = {{ default "pg_bigint_hash" $pool.sharding_function | quote }}

{{- range $index, $user := $pool.users }}
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.