Mark Kovalev created IGNITE-11929:
-------------------------------------
Summary: JDBC: autoCommit does't work's in sqlline
Key: IGNITE-11929
URL:
https://issues.apache.org/jira/browse/IGNITE-11929 Project: Ignite
Issue Type: Bug
Components: jdbc, sql
Affects Versions: 2.6
Reporter: Mark Kovalev
*Steps*.
# Connect to sqlline in first session with autoCommit=false option
{code:java}
./sqlline.sh --verbose=true --color=true --autoCommit=false -u "jdbc:ignite:thin://127.0.0.1:10800"
{code}
# Connect to sqlline in second session.
# Make DML operations in first session without commit
#
{code:java}
insert into City values(1,'London');
{code}
*Expected:*
The second session should't see changes.
*Actually:*
The second session saw the changes.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)