在文件中安装新的Pod并更改名称后。
Xcode不再检测代码中的错误,我什至可以写一篇论文,但不会发现它
我应该改回名字
在我的pod文件中,我看到了
;WITH cte as (
-- List of all, ordered by ID, with the most recent being the first listed
SELECT
ID
,NewValue
,row_number() over (partition by Id order by Date desc) Ranking
from #TT
)
select
tt.Id
,tt.OldValue
,cte.NewValue
from #TT tt
-- Join table to the "most recent" row for the ID
inner join cte
on cte.ID = tt.Id
and cte.Ranking = 1
在目标部分中,我更改了名称,但同时也更改了文件名。
有什么想法吗?