JingsongLi commented on a change in pull request #8035: 
[FLINK-11975][table-planner-blink] Support to run a sql query : 'SELECT * FROM 
(VALUES (1, 2, 3)) T(a, b, c)'
URL: https://github.com/apache/flink/pull/8035#discussion_r268473381
 
 

 ##########
 File path: 
flink-table/flink-table-runtime-blink/src/main/java/org/apache/flink/table/dataformat/GenericRow.java
 ##########
 @@ -117,6 +117,14 @@ public void setField(int ordinal, Object value) {
                this.fields[ordinal] = value;
        }
 
+       public Object getField(int ordinal) {
+               return this.fields[ordinal];
+       }
+
+       public void update(int ordinal, Object value) {
 
 Review comment:
   You need invoke `setField`

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to