BIND 10 master, updated. fceb2a853bf88760d5d5dec2a3e6f169799415ea [master] Update changelog for #1717
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Feb 27 08:25:58 UTC 2012
The branch, master has been updated
via fceb2a853bf88760d5d5dec2a3e6f169799415ea (commit)
via 30d7686cb6e2fa64866c983e0cfb7b8fabedc7a2 (commit)
via dbdf5296c3e98beb234ea1a161b004bed5e17a8a (commit)
from 04aa12f01ec871e625fdb8ee1a07c387ab0a8f2a (commit)
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 fceb2a853bf88760d5d5dec2a3e6f169799415ea
Author: Jelte Jansen <jelte at isc.org>
Date: Mon Feb 27 09:25:44 2012 +0100
[master] Update changelog for #1717
commit 30d7686cb6e2fa64866c983e0cfb7b8fabedc7a2
Merge: 04aa12f01ec871e625fdb8ee1a07c387ab0a8f2a dbdf5296c3e98beb234ea1a161b004bed5e17a8a
Author: Jelte Jansen <jelte at isc.org>
Date: Mon Feb 27 09:24:19 2012 +0100
[master] Merge branch 'trac1717'
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 7 +++++++
src/lib/datasrc/sqlite3_datasrc.cc | 8 ++++++++
2 files changed, 15 insertions(+), 0 deletions(-)
-----------------------------------------------------------------------
diff --git a/ChangeLog b/ChangeLog
index 7774d96..cd0f9eb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+386. [bug] jelte
+ Upon initial sqlite3 database creation, the 'diffs' table is now
+ always created. This already happened most of the time, but there
+ are a few cases where it was skipped, resulting in potential errors
+ in xfrout later.
+ (Trac #1717, git 30d7686cb6e2fa64866c983e0cfb7b8fabedc7a2)
+
385. [bug] jinmei
libdns++: masterLoad() didn't accept comments placed at the end of
an RR. Due to this the in-memory data source cannot load a master
diff --git a/src/lib/datasrc/sqlite3_datasrc.cc b/src/lib/datasrc/sqlite3_datasrc.cc
index 03b057c..7cd565d 100644
--- a/src/lib/datasrc/sqlite3_datasrc.cc
+++ b/src/lib/datasrc/sqlite3_datasrc.cc
@@ -76,6 +76,14 @@ const char* const SCHEMA_LIST[] = {
"ttl INTEGER NOT NULL, rdtype STRING NOT NULL COLLATE NOCASE, "
"rdata STRING NOT NULL)",
"CREATE INDEX nsec3_byhash ON nsec3 (hash)",
+ "CREATE TABLE diffs (id INTEGER PRIMARY KEY, "
+ "zone_id INTEGER NOT NULL, "
+ "version INTEGER NOT NULL, "
+ "operation INTEGER NOT NULL, "
+ "name STRING NOT NULL COLLATE NOCASE, "
+ "rrtype STRING NOT NULL COLLATE NOCASE, "
+ "ttl INTEGER NOT NULL, "
+ "rdata STRING NOT NULL)",
NULL
};
More information about the bind10-changes
mailing list