You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -834,3 +852,23 @@ type Nothing_Value_In_Filter_Condition
834
852
to_display_text : Text
835
853
to_display_text self =
836
854
"Using `Nothing` as an argument to a `"+self.filter_condition.to_text+"` cannot match anything."
855
+
856
+
## Indicates that different Date_Time (with or without timezone) or Date types
857
+
are mixed in the result, causing implicit coercions.
858
+
859
+
This is a warning, because using the `00:00` time and default time-zone may
860
+
not always be the expected choice, so the user should be aware of this.
861
+
type Mixing_Date_Time_Types
862
+
## PRIVATE
863
+
Date_To_Date_Time (related_column_name : Text | Nothing)
864
+
865
+
## PRIVATE
866
+
Implicit_Time_Zone (related_column_name : Text | Nothing)
867
+
868
+
to_display_text self -> Text =
869
+
location = if self.related_column_name.is_nothing then "" else " (in column ["+self.related_column_name+"])"
870
+
case self of
871
+
Mixing_Date_Time_Types.Date_To_Date_Time _ ->
872
+
"Mixing Date and Date_Time values"+location+": the Date values have been automatically converted to Date_Time by adding a time of 00:00 in the default time-zone."
873
+
Mixing_Date_Time_Types.Implicit_Time_Zone _ ->
874
+
"Mixing Date_Time values with and without timezone"+location+". A default timezone has been assumed where it was missing."
0 commit comments