Commit e7663c22 authored by Kirill Smelkov's avatar Kirill Smelkov

go/neo/sqlite: Sync with NEO/py v1.11

ROWID was dropped from trans and obj tables.

This corresponds to NEO/py commit 243c1a0f (sqlite: optimize storage of
metadata).
parent 23d8c235
...@@ -99,7 +99,7 @@ const trans = ` ...@@ -99,7 +99,7 @@ const trans = `
ttid INTEGER NOT NULL, ttid INTEGER NOT NULL,
PRIMARY KEY (partition, tid) PRIMARY KEY (partition, tid)
` ` // TODO create "WITHOUT ROWID"
// table "obj" stores committed object metadata. // table "obj" stores committed object metadata.
const obj = ` const obj = `
...@@ -111,7 +111,7 @@ const obj = ` ...@@ -111,7 +111,7 @@ const obj = `
-- XXX ^^^ can be NOT NULL with 0 serving instead -- XXX ^^^ can be NOT NULL with 0 serving instead
PRIMARY KEY (partition, oid, tid) PRIMARY KEY (partition, oid, tid)
` ` // TODO create "WITHOUT ROWID"
// `(partition, tid, oid)` // `(partition, tid, oid)`
// `(data_id)` // `(data_id)`
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment