SQLDelight question:
I have database table with the same name as some other class (eg. 'Table'). On Jvm it's okay because I can distinguish them by package. But after updating to Kotlin 1.9.20 and Xcode 15 the resulting klib switched their generated names (now my other class is called 'Table_' instead of 'Table') and project is not compiling. Is it somehow possible to switch them back? Or maybe exclude sqldelight table generated class inclusion to klib?