You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2017/05/10 15:14:54 UTC

[couchdb] 03/03: Add version to PSE db records

This is an automated email from the ASF dual-hosted git repository.

davisp pushed a commit to branch COUCHDB-3288-mixed-cluster-upgrade
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 02ce0cff087925f24ed7a7e39cd37e7d2ef06109
Author: Paul J. Davis <pa...@gmail.com>
AuthorDate: Wed May 10 10:14:39 2017 -0500

    Add version to PSE db records
---
 src/couch/src/couch_db_int.hrl | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/couch/src/couch_db_int.hrl b/src/couch/src/couch_db_int.hrl
index 0bbb5e0..da1e45d 100644
--- a/src/couch/src/couch_db_int.hrl
+++ b/src/couch/src/couch_db_int.hrl
@@ -39,6 +39,7 @@
 
 
 -record(new_pse_db, {
+    vsn,
     name,
     filepath,
 
@@ -67,6 +68,7 @@
 
 -define(NEW_PSE_DB, {
     db,
+    _, % Version
     _, % Name
     _, % FilePath
     _, % Engine
@@ -85,7 +87,7 @@
 }).
 
 
--define(PSE_DB_NAME(Db), element(2, Db)).
--define(PSE_DB_MAIN_PID(Db), element(5, Db)).
--define(PSE_DB_USER_CTX(Db), element(9, Db)).
--define(PSE_DB_SECURITY(Db), element(10, Db)).
+-define(PSE_DB_NAME(Db), element(3, Db)).
+-define(PSE_DB_MAIN_PID(Db), element(6, Db)).
+-define(PSE_DB_USER_CTX(Db), element(10, Db)).
+-define(PSE_DB_SECURITY(Db), element(11, Db)).

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.