MihawkZoro opened a new issue, #6344:
URL: https://github.com/apache/hudi/issues/6344
**Describe the problem you faced**
I have a hudi table
```
create table hudi_mor_test (
uuid int,
name string,
price double,
ts bigint
) using hudi
tblproperties (
type = 'mor',
primaryKey = 'uuid',
preCombineField = 'ts'
);
```
then I want to change the order of the field and follow the instruction of
document
[https://hudi.apache.org/docs/schema_evolution](url)
```
alter table hudi_mor_test alter column point after uuid;
```
but I get a error
```
Error in query: ALTER COLUMN ... FIRST | ALTER is only supported with v2
tables.
```
I want know what is the problem
**Environment Description**
* Hudi version :
0.11.1
* Spark version :
3.2.2
* Hive version :
2.3.9
* Hadoop version :
2.7.3
* Storage
hdfs
--
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]