I am very confused about how data are filtered before they are sent to the client. This results in unchanged items being passed to the client as empty entry even in DISTINCT mode. Is there a way to allow the adapter to send all data to the client for each update sent to the client?

From client side it seems that no matter how I configure the subscription it's's always receiving filtered data.

So basically I want the data sent to the client in full even if the data is unchanged.

Example of filtered data:

1,1|item1|item2|item3
1,1||itemNew|

I want the above to be unfiltered (ie: receive unchanged data as well):

1,1|item1|item2|item3
1,1|item1|itemNew|item3

What is the solution?