ovsdb: Implement table uniqueness constraints ("indexes").
[sliver-openvswitch.git] / ovsdb / ovsdb-doc.in
index 2577e78..b325b26 100755 (executable)
@@ -136,6 +136,8 @@ def typeAndConstraintsToNroff(column):
     constraints = column.type.constraintsToEnglish(escapeNroffLiteral)
     if constraints:
         type += ", " + constraints
+    if column.unique:
+        type += " (must be unique within table)"
     return type
 
 def columnToNroff(columnName, column, node):