[GitHub] [spark] zhengruifeng commented on a diff in pull request #40376: [SPARK-42756][CONNECT][PYTHON] Helper function to convert proto literal to value in Python Client

2023-03-12 Thread via GitHub


zhengruifeng commented on code in PR #40376:
URL: https://github.com/apache/spark/pull/40376#discussion_r1133373330


##
python/pyspark/sql/connect/expressions.py:
##
@@ -308,6 +308,43 @@ def _infer_type(cls, value: Any) -> DataType:
 def _from_value(cls, value: Any) -> "LiteralExpression":
 return LiteralExpression(value=value, 
dataType=LiteralExpression._infer_type(value))
 
+@classmethod
+def _to_value(cls, literal: "proto.Expression.Literal") -> Any:
+if literal.HasField("null"):
+return None
+elif literal.HasField("binary"):
+return literal.binary
+elif literal.HasField("boolean"):
+return literal.boolean
+elif literal.HasField("byte"):
+return literal.byte
+elif literal.HasField("short"):
+return literal.short
+elif literal.HasField("integer"):
+return literal.integer
+elif literal.HasField("long"):
+return literal.long
+elif literal.HasField("float"):
+return literal.float
+elif literal.HasField("double"):
+return literal.double
+elif literal.HasField("decimal"):
+return decimal.Decimal(literal.decimal.value)
+elif literal.HasField("string"):
+return literal.string
+elif literal.HasField("date"):
+return DateType().fromInternal(literal.date)
+elif literal.HasField("timestamp"):
+return TimestampType().fromInternal(literal.timestamp)
+elif literal.HasField("timestamp_ntz"):
+return TimestampNTZType().fromInternal(literal.timestamp_ntz)
+elif literal.HasField("day_time_interval"):
+return 
DayTimeIntervalType().fromInternal(literal.day_time_interval)
+elif literal.HasField("array"):
+return [LiteralExpression._to_value(v) for v in 
literal.array.elements]

Review Comment:
   let me add one



-- 
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: reviews-unsubscr...@spark.apache.org

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


-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] zhengruifeng commented on a diff in pull request #40376: [SPARK-42756][CONNECT][PYTHON] Helper function to convert proto literal to value in Python Client

2023-03-12 Thread via GitHub


zhengruifeng commented on code in PR #40376:
URL: https://github.com/apache/spark/pull/40376#discussion_r1133369822


##
python/pyspark/sql/connect/expressions.py:
##
@@ -308,6 +308,43 @@ def _infer_type(cls, value: Any) -> DataType:
 def _from_value(cls, value: Any) -> "LiteralExpression":
 return LiteralExpression(value=value, 
dataType=LiteralExpression._infer_type(value))
 
+@classmethod
+def _to_value(cls, literal: "proto.Expression.Literal") -> Any:
+if literal.HasField("null"):
+return None

Review Comment:
   `None` here is a valid value.



-- 
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: reviews-unsubscr...@spark.apache.org

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


-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] zhengruifeng commented on a diff in pull request #40376: [SPARK-42756][CONNECT][PYTHON] Helper function to convert proto literal to value in Python Client

2023-03-12 Thread via GitHub


zhengruifeng commented on code in PR #40376:
URL: https://github.com/apache/spark/pull/40376#discussion_r1133369721


##
python/pyspark/sql/connect/expressions.py:
##
@@ -308,6 +308,43 @@ def _infer_type(cls, value: Any) -> DataType:
 def _from_value(cls, value: Any) -> "LiteralExpression":
 return LiteralExpression(value=value, 
dataType=LiteralExpression._infer_type(value))
 
+@classmethod
+def _to_value(cls, literal: "proto.Expression.Literal") -> Any:
+if literal.HasField("null"):
+return None
+elif literal.HasField("binary"):
+return literal.binary
+elif literal.HasField("boolean"):
+return literal.boolean
+elif literal.HasField("byte"):
+return literal.byte
+elif literal.HasField("short"):
+return literal.short
+elif literal.HasField("integer"):
+return literal.integer
+elif literal.HasField("long"):
+return literal.long
+elif literal.HasField("float"):
+return literal.float
+elif literal.HasField("double"):
+return literal.double
+elif literal.HasField("decimal"):
+return decimal.Decimal(literal.decimal.value)
+elif literal.HasField("string"):
+return literal.string
+elif literal.HasField("date"):
+return DateType().fromInternal(literal.date)
+elif literal.HasField("timestamp"):
+return TimestampType().fromInternal(literal.timestamp)
+elif literal.HasField("timestamp_ntz"):
+return TimestampNTZType().fromInternal(literal.timestamp_ntz)
+elif literal.HasField("day_time_interval"):
+return 
DayTimeIntervalType().fromInternal(literal.day_time_interval)
+elif literal.HasField("array"):
+return [LiteralExpression._to_value(v) for v in 
literal.array.elements]

Review Comment:
   that is fine



-- 
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: reviews-unsubscr...@spark.apache.org

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


-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org