Adesh Kumar Rao created HIVE-23230:
--------------------------------------
Summary: HiveWarehouseConnector executeQuery api with query having
"LIMIT" clause returns more rows
Key: HIVE-23230
URL: https://issues.apache.org/jira/browse/HIVE-23230
Project: Hive
Issue Type: Bug
Reporter: Adesh Kumar Rao
The issue is reproducible when number of llap daemons is greater than 1.
How to reproduce:
```
create table test (id int);
insert into table test values (1);
insert into table test values (2);
insert into table test values (3);
insert into table test values (4);
insert into table test values (5);
insert into table test values (6);
insert into table test values (7);
delete from test where id = 7;
```
now running `select * from test limit 1;` will return more than 1 rows.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)