You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "mahmoud mehdi (JIRA)" <ji...@apache.org> on 2018/07/27 09:06:00 UTC

[jira] [Created] (SPARK-24943) Convert a SQL Struct to StructType

mahmoud mehdi created SPARK-24943:
-------------------------------------

             Summary: Convert a SQL Struct to StructType
                 Key: SPARK-24943
                 URL: https://issues.apache.org/jira/browse/SPARK-24943
             Project: Spark
          Issue Type: Improvement
          Components: SQL
    Affects Versions: 2.3.1
            Reporter: mahmoud mehdi
             Fix For: 2.4.0


The main goal of this User Story is to add a method to StructType which does the opposite to what does the sql method.
For example, for the following SQL Struct : 
{code:java}
df.schema.sql
//STRUCT<`price`: STRUCT<`amount`: BIGINT, `currency`: STRING>>{code}
 We'll have the following output : 
{code:java}
StructType.fromSql(df.schema.sql)
//StructType(StructField(price,StructType(StructField(amount,LongType,true), //StructField(currency,StringType,true)),true))
{code}
 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org