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

Fixed RD-15252: Missing handling of TIMESTAMPTZOID #11

Conversation

bgaidioz
Copy link

@bgaidioz bgaidioz commented Dec 23, 2024

An expression like NOW() evaluates to a TIMESTAMPTZ which fails to be converted and is sent as a string. Which for example breaks a Salesforce predicate.

WHERE date < NOW();
[info] simple_qual {
[info]   operator: LESS_THAN
[info]   value {
[info]     string {
[info]       v: "2025-03-26 15:40:46.640026+01"
[info]     }
[info]   }
[info] }

The patch ensures it's processed like a timestamp and the query doesn't send it as a string but as a plain timestamp.

WHERE date < NOW();
[info] simple_qual {
[info]   operator: LESS_THAN
[info]   value {
[info]     timestamp {
[info]       year: 2025
[info]       month: 3
[info]       day: 26
[info]       hour: 15
[info]       minute: 42
[info]       second: 3
[info]       nano: 301429000
[info]     }
[info]   }
[info] }

It strips the time zone from the timestamp (since we don't have support for time zones) after performing a translation to the local timezone.

  • timestamp with time zone '2001-01-10 10:00:00+02:00' => DAS value 2001-01-10 09:00:00
  • timestamp with time zone '2001-01-10 10:00:00+01:00' => DAS value 2001-01-10 10:00:00 (same time, Zurich)
  • timestamp with time zone '2001-01-10 10:00:00+00:00' => DAS value 2001-01-10 11:00:00
  • timestamp with time zone '2001-01-10 10:00:00-01:00' => DAS value 2001-01-10 12:00:00

Also fixed the missing microsecond value for timestamps in general.

WHERE x < timestamp '2001-01-10 10:12:34.123'

before:

[info]   value {
[info]     timestamp {
[info]       year: 2001
[info]       month: 1
[info]       day: 10
[info]       hour: 10
[info]       minute: 12
[info]       second: 34
[info]     }

after:

[info]   value {
[info]     timestamp {
[info]       year: 2001
[info]       month: 1
[info]       day: 10
[info]       hour: 10
[info]       minute: 12
[info]       second: 34
[info]       nano: 123000000
[info]     }

@bgaidioz bgaidioz marked this pull request as ready for review March 24, 2025 09:26
Makefile Outdated
@@ -2,7 +2,7 @@ srcdir = .
MODULE_big = multicorn
OBJS = src/errors.o src/python.o src/query.o src/multicorn.o
# Uncomment to have symbols in debuggers
# PG_CFLAGS = -g -O0
PG_CFLAGS = -g -O0

Choose a reason for hiding this comment

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

Need to put this one back.

@bgaidioz bgaidioz force-pushed the RD-15252-das-salesforce-soql-forward-query-with-created-date-filter branch from 5a9566a to 1db0bd4 Compare March 26, 2025 14:43
@bgaidioz bgaidioz merged commit d546cc8 into main Mar 26, 2025
@bgaidioz bgaidioz deleted the RD-15252-das-salesforce-soql-forward-query-with-created-date-filter branch March 26, 2025 14:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants