Often "\_" generated for "_" in code generation.

#68
by heejune - opened

When I ask text-to-sql generation and the column names include '' the under-score, it generate the code with "_" instead of ""
for example,
SELECT egm_info.egm_id
when it should be
SELECT egm_info.egm_id

I am using string.replace("_", "_") for all cases but I think this is not the best way.

Sign up or log in to comment