]> git.proxmox.com Git - ovs.git/commit
Add multi-column index support for the Python IDL
authorTerry Wilson <twilson@redhat.com>
Fri, 13 Apr 2018 00:24:27 +0000 (19:24 -0500)
committerBen Pfaff <blp@ovn.org>
Tue, 1 May 2018 00:15:49 +0000 (17:15 -0700)
commit5a6bba2c28ff82a7a1c30ef3e42f6a0389af32fe
treecfb43bfd2d311bfb0c10454df4e5473a45c845a4
parente3096cff984dad934eb47688716c22de191df072
Add multi-column index support for the Python IDL

This adds multi-column index support for the Python IDL that is
similar to the feature in the C IDL. Since it adds sortedcontainers
as a dependency and some distros don't yet package it, the library
is copied in-tree and used if sortedcontainers is not installed.

Signed-off-by: Terry Wilson <twilson@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
python/automake.mk
python/ovs/compat/__init__.py [new file with mode: 0644]
python/ovs/compat/sortedcontainers/LICENSE [new file with mode: 0644]
python/ovs/compat/sortedcontainers/__init__.py [new file with mode: 0644]
python/ovs/compat/sortedcontainers/sorteddict.py [new file with mode: 0644]
python/ovs/compat/sortedcontainers/sortedlist.py [new file with mode: 0644]
python/ovs/compat/sortedcontainers/sortedset.py [new file with mode: 0644]
python/ovs/db/custom_index.py [new file with mode: 0644]
python/ovs/db/idl.py
python/setup.py
tests/test-ovsdb.py