BIND 10 trac1845, updated. 8a33648413f84e7a7be65db8890d217d91f7c8f6 [1845] only do rollbackFailure test for older sqlite3 lib
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Apr 4 12:44:41 UTC 2012
The branch, trac1845 has been updated
discards 53b1bc1c67699b20e8856ae95d9d10f8d3341963 (commit)
via 8a33648413f84e7a7be65db8890d217d91f7c8f6 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (53b1bc1c67699b20e8856ae95d9d10f8d3341963)
\
N -- N -- N (8a33648413f84e7a7be65db8890d217d91f7c8f6)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8a33648413f84e7a7be65db8890d217d91f7c8f6
Author: Jelte Jansen <jelte at isc.org>
Date: Wed Apr 4 14:35:46 2012 +0200
[1845] only do rollbackFailure test for older sqlite3 lib
test is a noop for versions 3007011+
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/tests/sqlite3_accessor_unittest.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/tests/sqlite3_accessor_unittest.cc b/src/lib/datasrc/tests/sqlite3_accessor_unittest.cc
index 03b6bf3..fe6ddbc 100644
--- a/src/lib/datasrc/tests/sqlite3_accessor_unittest.cc
+++ b/src/lib/datasrc/tests/sqlite3_accessor_unittest.cc
@@ -779,7 +779,7 @@ TEST_F(SQLite3Update, rollbackFailure) {
// Since SQLite3 version 3.7.11, rollbacks do not fail on pending
// transactions anymore, making this test fail (and moot). So
// we'll only try on older versions
-#if SQLITE_VERSION_NUMBER < 030711
+#if SQLITE_VERSION_NUMBER < 3007011
string columns[DatabaseAccessor::COLUMN_COUNT];
iterator = accessor->getRecords("example.com.", zone_id);
EXPECT_TRUE(iterator->getNext(columns));
More information about the bind10-changes
mailing list