ovsdb-data: Allow arbitrary white space as string data delimiters.
[openvswitch] / lib / ovsdb-idl.c
index fd4c915f0fd537cc7adfc5bfaf4f4b72399e35e2..960e0866dc967c674c05a70344513e7199ea09a2 100644 (file)
@@ -799,7 +799,7 @@ next_real_row(struct ovsdb_idl_table *table, struct hmap_node *node)
         struct ovsdb_idl_row *row;
 
         row = CONTAINER_OF(node, struct ovsdb_idl_row, hmap_node);
-        if (!ovsdb_idl_row_is_orphan(row)) {
+        if (row->new || !ovsdb_idl_row_is_orphan(row)) {
             return row;
         }
     }