shaofengshi commented on issue #5534:
URL: https://github.com/apache/gravitino/issues/5534#issuecomment-3190838438

   Flink SQL> CREATE TABLE IF NOT EXISTS employees (
   >     id INT,
   >     name STRING,
   >     dt INT
   > )
   > PARTITIONED BY (dt);
   [INFO] Execute statement succeed.
   
   Flink SQL> alter table employees ADD  mycomment STRING;
   [INFO] Execute statement succeed.
   
   
   Flink SQL> describe employees;
   +-----------+--------+------+-----+--------+-----------+
   |      name |   type | null | key | extras | watermark |
   +-----------+--------+------+-----+--------+-----------+
   |        id |    INT | TRUE |     |        |           |
   |      name | STRING | TRUE |     |        |           |
   | mycomment | STRING | TRUE |     |        |           |
   |        dt |    INT | TRUE |     |        |           |
   +-----------+--------+------+-----+--------+-----------+
   4 rows in set
   
   I'm using 0.9.1, the "alter" seems OK. @FANNG1 @coolderli Please let me if 
need verify other cases.


-- 
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