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

Calling Interval.new on DateTimes, changes the interval to use NaiveDateTime #707

Open
gaiabeatrice opened this issue Feb 15, 2022 · 0 comments

Comments

@gaiabeatrice
Copy link

gaiabeatrice commented Feb 15, 2022

Steps to reproduce

The following code snippet:

from = ~U[2021-01-07 00:00:00.000000Z]
until = ~U[2021-03-07 00:00:00.000000Z]

Timex.Interval.new(from: from, until: until)

returns:

%Timex.Interval{
  from: ~N[2021-01-07 00:00:00.000000],
  left_open: false,
  right_open: true,
  step: [days: 1],
  until: ~N[2021-03-07 00:00:00.000000]
}

Description of issue

I would expect the result to keep the same type as the input ones, and not implicitly convert them to NaiveDateTime.

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

No branches or pull requests

1 participant