• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

realm / realm-core / 1647

07 Sep 2023 10:06AM UTC coverage: 91.224% (+0.01%) from 91.212%
1647

push

Evergreen

GitHub
Optimize sort followed by limit (#6941)

95904 of 175834 branches covered (0.0%)

56 of 56 new or added lines in 3 files covered. (100.0%)

77 existing lines in 12 files now uncovered.

233372 of 255824 relevant lines covered (91.22%)

7167127.69 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

35.29
/src/realm/util/misc_ext_errors.cpp
1
#include <realm/util/assert.hpp>
2
#include <realm/util/misc_ext_errors.hpp>
3

4
using namespace realm;
5

6
util::MiscExtErrorCategory util::misc_ext_error_category;
7

8

9
const char* util::MiscExtErrorCategory::name() const noexcept
UNCOV
10
{
×
UNCOV
11
    return "realm.util.misc_ext";
×
UNCOV
12
}
×
13

14

15
std::string util::MiscExtErrorCategory::message(int value) const
16
{
1,328✔
17
    switch (MiscExtErrors(value)) {
1,328✔
18
        case MiscExtErrors::end_of_input:
1,320✔
19
            return "End of input";
1,320✔
20
        case MiscExtErrors::premature_end_of_input:
8✔
21
            return "Premature end of input";
8✔
22
        case MiscExtErrors::delim_not_found:
✔
23
            return "Delimiter not found";
×
24
        case MiscExtErrors::operation_not_supported:
✔
25
            return "Operation not supported";
×
26
    }
×
27
    REALM_ASSERT(false);
×
28
    return {};
×
29
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc