操作
Bug(バグ) #419
完了Use unnecessary "IS NULL" matching for the NOT NULL column CommunityMember.is_pre (NOT NULL制約の付いている community_member.is_pre カラムに対して不要な IS NULL での比較をしている)
開始日:
2010-01-01
期日:
進捗率:
100%
予定工数:
3.6 で発生するか:
3.8 で発生するか:
説明
From 2964d2750d5a
uses:
(is_pre = 0 OR is_pre IS NULL)
instead of:
position <> "pre"
but "is_pre IS NULL
" is unwanted because the `is_pre` column is NOT NULL.
操作