Re: [ovs-dev] [PATCH] ovsdb Allow comparison on optional scalar types

2014-08-20 Thread Ben Pfaff
On Tue, Aug 19, 2014 at 05:28:55PM -0600, Terry Wilson wrote: > This allows things like initiating a wait request on an interface > ofport being set. > > When the optional field is empty and operation is != or excludes > then the result is true; otherwise it is false. If the field is > set then th

[ovs-dev] [PATCH] ovsdb Allow comparison on optional scalar types

2014-08-19 Thread Terry Wilson
This allows things like initiating a wait request on an interface ofport being set. When the optional field is empty and operation is != or excludes then the result is true; otherwise it is false. If the field is set then the field is compared normally for its type. Signed-off-by: Terry Wilson -