Skip to content
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

Fix SQL queries on MONEY columns #3492

Draft
wants to merge 3 commits into
base: sql/fix/use-date-reader-in-result-set
Choose a base branch
from

Conversation

jnsrnhld
Copy link
Collaborator

No description provided.

@jnsrnhld
Copy link
Collaborator Author

jnsrnhld commented Jul 15, 2024

@awildturtok Kannst du in deiner Postgres, die du für's Testen nutzt, einmal schauen was bei dir steht, wenn du SHOW lc_numeric; ausführst? Bzw. hast du bei deiner Postgres explizit locales gesetzt?

Vielleicht macht es generell Sinn die Locale beim Parsen von numerischen Werten in Java mit zu berücksichtigen.

@awildturtok
Copy link
Collaborator

Das ist in C locale.

@jnsrnhld jnsrnhld changed the base branch from develop to sql/fix/use-date-reader-in-result-set July 16, 2024 15:30
return null;
}
return money.setScale(2, RoundingMode.HALF_EVEN);
NumberFormat format = NumberFormat.getNumberInstance(config.getLocale().getFrontend());
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@awildturtok Ist denn deine Conquery-Locale für die Testinstanz auf GERMAN gesetzt? Dann sollte das hier hoffentlich helfen.

@awildturtok
Copy link
Collaborator

https://www.postgresql.org/docs/current/runtime-config-client.html#GUC-LC-MONETARY

Ich würde mich nicht wundern, wenn man hiermit arbeiten sollte?

@jnsrnhld
Copy link
Collaborator Author

@awildturtok Nach meinem aktuellen Kenntnisstand lässt sich die Locale nicht pro Connection/Query setzen, zumindest nicht so, dass das Ausgabeformat von monetären oder numerischen Werten davon beeinflusst wird (siehe hier).
Mein Vorschlag wäre, die Locale beim Parsen aus dem ResultSet zu nutzen. Die Locale ist dann entweder die in Conquery allgemein gesetzte Locale oder eine zusätzlich an der DB Config gesetzte Locale.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants