You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Andrey Mashenkov (Jira)" <ji...@apache.org> on 2022/10/11 10:42:00 UTC

[jira] [Created] (IGNITE-17870) SQL. Do not yield separate query result for comments

Andrey Mashenkov created IGNITE-17870:
-----------------------------------------

             Summary: SQL. Do not yield separate query result for comments
                 Key: IGNITE-17870
                 URL: https://issues.apache.org/jira/browse/IGNITE-17870
             Project: Ignite
          Issue Type: Bug
          Components: sql
            Reporter: Andrey Mashenkov
            Assignee: Andrey Mashenkov


Motivation

Currently, lines with commented out lines yield additional query result. For the query below, three results will be returned (result for comment is “updated rows: 0“). You can play with the comments position within the entire query, the behavior with comments is not consistent and clear.

-- asdf
SELECT * FROM Test_Person limit 1;
update Test_Person set name='sdfsdf' where id = 44444444;
-- come
-- asdf

What to do

Do not yield a separate query result for commented out lines.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)