Dharshana M Krishnamoorthy created ATLAS-4198:
-------------------------------------------------
Summary: [Atlas: Audits][Regression] No audits should be created
while inserting data into table
Key: ATLAS-4198
URL: https://issues.apache.org/jira/browse/ATLAS-4198
Project: Atlas
Issue Type: Bug
Components: atlas-core
Reporter: Dharshana M Krishnamoorthy
As perĀ ATLAS-3198, no audit entry should be created for insert operation. In
the latest code we are able to see audit entries for insert operation
Steps to repro:
# Create a table
# Insert data into table
*Create table:*
{code:java}
CREATE TABLE IF NOT EXISTS dharsh_test_1 ( eid int, name String, salary String,
designation String);{code}
*Insert data into table:*
{code:java}
insert into dharsh_test_1 (eid, name, salary, designation) values
(1001, "Gopal", "45000", "Technical manager"),
(1002, "Manish", "45000", "Proof reader"),
(1003, "Masthanvali" , "40000", "Technical writer"); {code}
The above insert operation should not create any audit entry according to
ATLAS-3198,, but it now creates
--
This message was sent by Atlassian Jira
(v8.3.4#803005)