Query Columns not Upper case

Switching over from old railo version to lucee. The columns of the query are not being returned in upper case.

{COLUMNS: Array(34), DATA: Array(12)}

COLUMNS are not case sensitive in lucee and not uppercased by default

COLUMNS in railo all the mysql columns are uppercased when being returned.

Any suggestions. Lots of front end code expected upper case columns and would a pain to have to go through upper case server side

EDIT
< cfprocessingdirective preservecase =“false” >
seems to work on made objects but not on queries

Try adding this to your Application.cfc

this.serialization.preserveCaseForQueryColumn = false;