Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(702)

Unified Diff: sync/syncable/syncable_columns.h

Issue 10989063: Changed DB to store node positions as Ordinals. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Changed field from varchar to blob, improved tests Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sync/syncable/syncable_columns.h
diff --git a/sync/syncable/syncable_columns.h b/sync/syncable/syncable_columns.h
index a6152c42de7d3f337bac8fa3819a01ee13784a2d..d289e78e148fea3d2b719248d4902f612294e1d4 100644
--- a/sync/syncable/syncable_columns.h
+++ b/sync/syncable/syncable_columns.h
@@ -23,7 +23,7 @@ static const ColumnSpec g_metas_columns[] = {
{"metahandle", "bigint primary key ON CONFLICT FAIL"},
{"base_version", "bigint default " CHANGES_VERSION_STRING},
{"server_version", "bigint default 0"},
- {"server_position_in_parent", "bigint default 0"},
+ {"server_position_in_parent", "blob"},
// This is the item ID that we store for the embedding application.
{"local_external_id", "bigint default 0"},
// These timestamps are kept in the same format as that of the

Powered by Google App Engine
This is Rietveld 408576698