I have a kusto table with id:int and name:string fields with data in it. I am trying to alter table schema types for id: int to id:long. I tried the below but it throws the below error. I also tried .alter instead of .alter-merge but no luck. What is the procedure to update Kusto table column type for existing table with data and without disturbing the current data?
.alter-merge table mytable
(Id: long, Name: string)
Error: 'Alter table does not support column data type change for existing columns (Id). Current type=I32, requested type=I64'.