(uids []uint64)
| 1870 | } |
| 1871 | |
| 1872 | func checkUidZero(uids []uint64) bool { |
| 1873 | for _, uid := range uids { |
| 1874 | if uid == 0 { |
| 1875 | return true |
| 1876 | } |
| 1877 | } |
| 1878 | return false |
| 1879 | } |
| 1880 | |
| 1881 | func planForEqFilter(fc *functionContext, pred string, uidlist []uint64) { |
| 1882 | if checkUidZero(uidlist) { |
no outgoing calls
no test coverage detected