Re: [ovs-dev] [PATCH v4 1/2] ovsdb-idl : Add APIs to query if a table and a column is present or not.

2021-08-26 Thread Numan Siddique
On Thu, Aug 26, 2021 at 7:45 AM Ilya Maximets wrote: > > On 8/26/21 11:39 AM, Ilya Maximets wrote: > > On 8/26/21 1:44 AM, Numan Siddique wrote: > >> ' > >> > >> On Wed, Aug 25, 2021 at 6:06 PM Ilya Maximets wrote: > >>> > >>> On 8/25/21 5:12 AM, num...@ovn.org wrote: > From: Numan Siddique

Re: [ovs-dev] [PATCH v4 1/2] ovsdb-idl : Add APIs to query if a table and a column is present or not.

2021-08-26 Thread Ilya Maximets
On 8/26/21 11:39 AM, Ilya Maximets wrote: > On 8/26/21 1:44 AM, Numan Siddique wrote: >> ' >> >> On Wed, Aug 25, 2021 at 6:06 PM Ilya Maximets wrote: >>> >>> On 8/25/21 5:12 AM, num...@ovn.org wrote: From: Numan Siddique This patch adds 2 new APIs in the ovsdb-idl client library

Re: [ovs-dev] [PATCH v4 1/2] ovsdb-idl : Add APIs to query if a table and a column is present or not.

2021-08-26 Thread Ilya Maximets
On 8/26/21 1:44 AM, Numan Siddique wrote: > ' > > On Wed, Aug 25, 2021 at 6:06 PM Ilya Maximets wrote: >> >> On 8/25/21 5:12 AM, num...@ovn.org wrote: >>> From: Numan Siddique >>> >>> This patch adds 2 new APIs in the ovsdb-idl client library >>> - ovsdb_idl_has_table() and

Re: [ovs-dev] [PATCH v4 1/2] ovsdb-idl : Add APIs to query if a table and a column is present or not.

2021-08-25 Thread Numan Siddique
' On Wed, Aug 25, 2021 at 6:06 PM Ilya Maximets wrote: > > On 8/25/21 5:12 AM, num...@ovn.org wrote: > > From: Numan Siddique > > > > This patch adds 2 new APIs in the ovsdb-idl client library > > - ovsdb_idl_has_table() and ovsdb_idl_has_column_in_table() to > > query if a table and a column

Re: [ovs-dev] [PATCH v4 1/2] ovsdb-idl : Add APIs to query if a table and a column is present or not.

2021-08-25 Thread Ilya Maximets
On 8/25/21 5:12 AM, num...@ovn.org wrote: > From: Numan Siddique > > This patch adds 2 new APIs in the ovsdb-idl client library > - ovsdb_idl_has_table() and ovsdb_idl_has_column_in_table() to > query if a table and a column is present in the IDL or not. This > is required for scenarios where

[ovs-dev] [PATCH v4 1/2] ovsdb-idl : Add APIs to query if a table and a column is present or not.

2021-08-24 Thread numans
From: Numan Siddique This patch adds 2 new APIs in the ovsdb-idl client library - ovsdb_idl_has_table() and ovsdb_idl_has_column_in_table() to query if a table and a column is present in the IDL or not. This is required for scenarios where the server schema is old and missing a table or column