我们的应用发生了奇怪的崩溃。看来C libc.so发生了错误。 stacktrace如下:
select countif(num_abc > 0) as num_abc_users,
countif(num_abc > 0 and num_other = 0) as num_abc_only,
countif(num_abc > 0 and num_other > 0) as num_abc_plus_other
from (select user_id, countif(app_name = 'ABC') as num_abc, countif(app_name <> 'ABC') then num_other
from t
group by user_id
) t;
我们进行了搜索,但没有找到任何帮助。有人对此错误有任何想法吗?