mirror of
https://github.com/openvswitch/ovs
synced 2025-10-21 14:49:41 +00:00
19 lines
677 B
Plaintext
19 lines
677 B
Plaintext
![]() |
AT_BANNER([OVSDB -- columns])
|
||
|
|
||
|
OVSDB_CHECK_POSITIVE([ordinary column],
|
||
|
[[parse-column mycol '{"type": "integer"}']],
|
||
|
[[{"type":"integer"}]])
|
||
|
|
||
|
OVSDB_CHECK_POSITIVE([immutable column],
|
||
|
[[parse-column mycol '{"type": "real", "mutable": false}']],
|
||
|
[[{"mutable":false,"type":"real"}]])
|
||
|
|
||
|
OVSDB_CHECK_POSITIVE([ephemeral column],
|
||
|
[[parse-column mycol '{"type": "uuid", "ephemeral": true}']],
|
||
|
[[{"ephemeral":true,"type":"uuid"}]])
|
||
|
|
||
|
OVSDB_CHECK_POSITIVE([column with comment],
|
||
|
[[parse-column mycol '{"type": "boolean",
|
||
|
"comment": "extra information about this column"}']],
|
||
|
[[{"comment":"extra information about this column","type":"boolean"}]])
|