waytoharish commented on issue #10895:
URL: https://github.com/apache/hudi/issues/10895#issuecomment-2011288296

   Hi @danny0405 I dont see the SQL in Flink.
   
   Here is my code which I am trying in Java 
   
   `public static final DataType ROW_DATA_TYPE = ROW(
   DataTypes.FIELD("uuid", DataTypes.VARCHAR(256)), // record key
   DataTypes.FIELD("name", DataTypes.VARCHAR(10)),
   DataTypes.FIELD("age", DataTypes.INT()),
   DataTypes.FIELD("ts", DataTypes.TIMESTAMP(3)),
   DataTypes.FIELD("ts", DataTypes.TIMESTAMP(3)),
   DataTypes.FIELD("data", DataTypes.ARRAY(
   ROW(
   DataTypes.FIELD("test", DataTypes.VARCHAR(256)), // record key
   DataTypes.FIELD("type", DataTypes.VARCHAR(10))
   
                    ))),
                   DataTypes.FIELD("partition", DataTypes.VARCHAR(10))
          )
           .notNull();`


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to