xtern commented on code in PR #3229:
URL: https://github.com/apache/ignite-3/pull/3229#discussion_r1502444149


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/ExecutionContext.java:
##########
@@ -115,14 +118,15 @@ public ExecutionContext(
         this.localNode = localNode;
         this.originatingNodeName = originatingNodeName;
         this.txAttributes = txAttributes;
+        this.timeZoneId = Objects.requireNonNullElseGet(timeZoneId, 
ZoneId::systemDefault);

Review Comment:
   Done, thanks



##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/QueryProperty.java:
##########
@@ -32,6 +33,7 @@ public final class QueryProperty {
     public static final Property<Set<SqlQueryType>> ALLOWED_QUERY_TYPES =
             new Property<>("allowed_query_types", cast(Set.class));
     public static final Property<String> DEFAULT_SCHEMA = new 
Property<>("default_schema", String.class);
+    public static final Property<ZoneId> DEFAULT_TIME_ZONE_ID = new 
Property<>("default_time_zone_id", ZoneId.class);

Review Comment:
   Fixed, thanks



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to