aboutsummaryrefslogtreecommitdiff
path: root/tests/test-ovsdb.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-11-16 09:14:52 -0800
committerBen Pfaff <blp@nicira.com>2010-11-16 09:14:52 -0800
commitef73f86cd4f7ec0cd2d3f9526167a0d0f6be4f63 (patch)
treead54cb7e83f8e6c2aed825b6ba9c7b5fc36c5958 /tests/test-ovsdb.c
parentcbb7baddb826a7e0fda8d6cd352101276cd7c774 (diff)
ovsdb-idl: Make selecting tables and columns to replicate more flexible.
Until now, by default the IDL replicated all tables and all columns in the database, and a few functions made it possible to avoid replicating selected columns. This commit adds a mode in which nothing is replicated by default and the client code is responsible for specifying each column and table that it is interested in. The following commit adds a user for this mode.
Diffstat (limited to 'tests/test-ovsdb.c')
-rw-r--r--tests/test-ovsdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-ovsdb.c b/tests/test-ovsdb.c
index 5a5a9083..aca68dcd 100644
--- a/tests/test-ovsdb.c
+++ b/tests/test-ovsdb.c
@@ -1842,7 +1842,7 @@ do_idl(int argc, char *argv[])
idltest_init();
- idl = ovsdb_idl_create(argv[1], &idltest_idl_class);
+ idl = ovsdb_idl_create(argv[1], &idltest_idl_class, true);
if (argc > 2) {
struct stream *stream;