-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Logging notification activity #7072
Conversation
Pull Request Test Coverage Report for Build github_pull_request_281106
💛 - Coveralls |
94394fd
to
1d634e6
Compare
1d634e6
to
8383daa
Compare
} | ||
|
||
~ScopeExit() noexcept | ||
~ScopeExit() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't it necessary to have a noexcept destructor? There is a static assert about this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Noexcept is the default for destructors and explicitly marking them as noexcept is cosmetic.
test/test_parser.cpp
Outdated
@@ -514,6 +514,8 @@ TEST(Parser_empty_input) | |||
|
|||
TEST(Parser_ConstrainedQuery) | |||
{ | |||
// We no longer thorow when serializing a constrained query, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// We no longer thorow when serializing a constrained query, | |
// We no longer throw when serializing a constrained query, |
test/test_parser.cpp
Outdated
@@ -514,6 +514,8 @@ TEST(Parser_empty_input) | |||
|
|||
TEST(Parser_ConstrainedQuery) | |||
{ | |||
// We no longer thorow when serializing a constrained query, | |||
// but the decription cannot be used to build a new query |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// but the decription cannot be used to build a new query | |
// but the description cannot be used to build a new query |
@@ -5414,7 +5414,7 @@ TEST(Table_LoggingMutations) | |||
CHECK(str.find("abcdefghijklmno ...") != std::string::npos); | |||
CHECK(str.find("14 15 16 17 18 19 ...") != std::string::npos); | |||
CHECK(str.find("2023-09-20 10:53:35") != std::string::npos); | |||
CHECK(str.find("Query::get_description() failed:") != std::string::npos); | |||
CHECK(str.find("VIEW { 6 element(s) }") != std::string::npos); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor comments
8383daa
to
c5d1118
Compare
What, How & Why?
Fixes #7050
☑️ ToDos