I have a table with defination as follows :
CREATE TABLE users (
id INT PRIMARY KEY,
name STRING,
age INT
);
I have 2 records in it. The count(_doc)
for users table is also 2. As per latest release doc, _doc should be removed. How do i implement this is my scenario?