We are on MS SQL SERVER
I have the following table structure
Create table test
(
BusId int,
BusName Varchar(20)
)
Create table testbkp
(
BusId int,
BusName Varchar(20)
)
The following query gets deployed
Insert into testbkp ( BusId,BusName) SELECT BusId,BusName from test where BusId =1
But the following query gives error
Insert into testbkp ( BusId,BusName) SELECT BusId,BusName from test where Busid =1
Is Liquibase is case sensitive (in the last query I have used Busid instead on BusId)