Missing break in switch
Execution falls through to the next case statement or default; this might indicate a common typo. Missing break statement between cases in switch statement
/src/mongo/db/exec/sbe/vm/vm.cpp:1790: MISSING_BREAK 122018 The case for value "(mongo::sbe::value::TypeTags)27" is not terminated by a "break" statement.
/src/mongo/db/exec/sbe/vm/vm.cpp:1795: MISSING_BREAK 122018 The above case falls through to this one.
- is caused by
-
SERVER-63574 Index SBEPlan: Support all types of values in EqLookup translation
- Closed