On Fri, Sep 24, 2021 at 12:19 PM Dilip Kumar <dilipbal...@gmail.com> wrote: > > On Fri, Sep 24, 2021 at 12:04 PM Amit Kapila <amit.kapil...@gmail.com> wrote: > > > > One possibility in this regard could be that we enhance Replica > > Identity .. Include (column_list) where all the columns in the include > > list won't be sent > > Instead of RI's include column list why we can not think of > row_filter's columns list? I mean like we log the old RI column can't > we make similar things for the row filter columns? With that, we > don't have to all the columns instead we only log the columns which > are in row filter, or is this too hard to identify during write > operation? >
Yeah, we can do that as well but my guess is that will have some additional work (to find common columns and log them only once) in heap_delete/update and then probably during decoding (to assemble the required filter and RI key). I am not very sure on this point, one has to write code and test. -- With Regards, Amit Kapila.