CTE View References Break After Table Rename in SQLite
Issue Overview: ALTER TABLE RENAME Fails Due to Multiple CTE References in Views When renaming a table in SQLite that is referenced multiple times within a Common Table Expression (CTE) view, the database engine may fail to update all references to the renamed table. This manifests as an error stating no such table: main.t1 during…