Add "external_ids" column to Open_vSwitch table, add "system-uuid" on Xen.
[openvswitch] / ovsdb / table.h
index 6e8a78596afc2e86074da12c9fed36fd2afc6cde..ff99cf17c34ba012a6a075d51758b6dee33949bd 100644 (file)
@@ -27,14 +27,14 @@ struct uuid;
 /* Schema for a database table. */
 struct ovsdb_table_schema {
     char *name;
-    char *comment;
     bool mutable;
     struct shash columns;       /* Contains "struct ovsdb_column *"s. */
 };
 
 struct ovsdb_table_schema *ovsdb_table_schema_create(const char *name,
-                                                     const char *comment,
                                                      bool mutable);
+struct ovsdb_table_schema *ovsdb_table_schema_clone(
+    const struct ovsdb_table_schema *);
 void ovsdb_table_schema_destroy(struct ovsdb_table_schema *);
 
 struct ovsdb_error *ovsdb_table_schema_from_json(const struct json *,