我正在尝试在我的主机中使用Firebase电话身份验证 模拟器的应用程序。我在firebase中设置了一个测试编号,但是每次尝试发送验证码时,都会收到相同的错误:PhoneAuthProvider:Sms自动检索超时。我该如何解决?*
select
t.*,
case greatest(score0, score1, score2)
when score0 then 0
when score1 then 1
when score2 then 2
end action_value
from (
select
user_id,
time_id,
max(case when actual_value = 0 then score end) score0,
max(case when actual_value = 1 then score end) score1,
max(case when actual_value = 2 then score end) score2
from mytable
group by user_id, time_id
) t