Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-31276

Wrong warnings on 2-nd execution of PS for query with GROUP_CONCAT

Details

    Description

      Wrong message on second execution of prepare statement for GROUP_CONCAT() function with optimizer_switch='outer_join_with_cache=off' (with 'outer_join_with_cache=on' messages are correct ) and left join:

      SET optimizer_switch='outer_join_with_cache=off';
       
      set group_concat_max_len=5;
      create table t1 (a int, b varchar(20));
      create table t2 (a int, c varchar(20));
      insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
      insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");
       
      prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";
       
      execute stmt1;
      execute stmt1;
       
      deallocate prepare stmt1;
       
      drop table t1, t2;
      set group_concat_max_len=default;
      

      Actual result:

      execute stmt1;
      group_concat(t1.b,t2.c)
      aaaaa
      bbbbb
      Warnings:
      Warning	1260	Row 1 was cut by GROUP_CONCAT()
      Warning	1260	Row 2 was cut by GROUP_CONCAT()
      execute stmt1;
      group_concat(t1.b,t2.c)
      aaaaa
      bbbbb
      Warnings:
      Warning	1260	Row 3 was cut by GROUP_CONCAT()
      Warning	1260	Row 4 was cut by GROUP_CONCAT()
      deallocate prepare stmt1;
      

      Expected result:

      execute stmt1;
      group_concat(t1.b,t2.c)
      aaaaa
      bbbbb
      Warnings:
      Warning	1260	Row 1 was cut by GROUP_CONCAT()
      Warning	1260	Row 2 was cut by GROUP_CONCAT()
      execute stmt1;
      group_concat(t1.b,t2.c)
      aaaaa
      bbbbb
      Warnings:
      Warning	1260	Row 1 was cut by GROUP_CONCAT()
      Warning	1260	Row 2 was cut by GROUP_CONCAT()
      deallocate prepare stmt1;
      

      Attachments

        Issue Links

          Activity

            lstartseva Lena Startseva created issue -
            lstartseva Lena Startseva made changes -
            Field Original Value New Value
            lstartseva Lena Startseva made changes -
            Description Wrong message on second execution of prepare statement for GROUP_CONCAT() function with 'outer_join_with_cache=off' and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            Actual result:
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            Expected result:
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            Wrong message on second execution of prepare statement for GROUP_CONCAT() function with 'outer_join_with_cache=off' and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            lstartseva Lena Startseva made changes -
            Description Wrong message on second execution of prepare statement for GROUP_CONCAT() function with 'outer_join_with_cache=off' and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            Wrong message on second execution of prepare statement for GROUP_CONCAT() function with 'outer_join_with_cache=off' (with 'outer_join_with_cache=on' messages are correct ) and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            lstartseva Lena Startseva made changes -
            Description Wrong message on second execution of prepare statement for GROUP_CONCAT() function with 'outer_join_with_cache=off' (with 'outer_join_with_cache=on' messages are correct ) and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            Wrong message on second execution of prepare statement for GROUP_CONCAT() function with *optimizer_switch='outer_join_with_cache=off' *(with 'outer_join_with_cache=on' messages are correct ) and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            lstartseva Lena Startseva made changes -
            Description Wrong message on second execution of prepare statement for GROUP_CONCAT() function with *optimizer_switch='outer_join_with_cache=off' *(with 'outer_join_with_cache=on' messages are correct ) and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            Wrong message on second execution of prepare statement for GROUP_CONCAT() function with *optimizer_switch='outer_join_with_cache=off'* (with 'outer_join_with_cache=on' messages are correct ) and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            lstartseva Lena Startseva made changes -
            Description Wrong message on second execution of prepare statement for GROUP_CONCAT() function with *optimizer_switch='outer_join_with_cache=off'* (with 'outer_join_with_cache=on' messages are correct ) and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            Wrong message on second execution of prepare statement for GROUP_CONCAT() function with *optimizer_switch='outer_join_with_cache=off'* (with 'outer_join_with_cache=on' messages are correct ) and left/inner join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            lstartseva Lena Startseva made changes -
            Assignee Oleksandr Byelkin [ sanja ]
            lstartseva Lena Startseva made changes -
            Description Wrong message on second execution of prepare statement for GROUP_CONCAT() function with *optimizer_switch='outer_join_with_cache=off'* (with 'outer_join_with_cache=on' messages are correct ) and left/inner join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            Wrong message on second execution of prepare statement for GROUP_CONCAT() function with *optimizer_switch='outer_join_with_cache=off'* (with 'outer_join_with_cache=on' messages are correct ) and left join:
            {code:sql}
            SET optimizer_switch='outer_join_with_cache=off';

            set group_concat_max_len=5;
            create table t1 (a int, b varchar(20));
            create table t2 (a int, c varchar(20));
            insert into t1 values (1,"aaaaaaaaaa"),(2,"bbbbbbbbbb");
            insert into t2 values (1,"cccccccccc"),(2,"dddddddddd");

            prepare stmt1 from "select group_concat(t1.b,t2.c) from t1 left join t2 using(a) group by t1.a";

            execute stmt1;
            execute stmt1;

            deallocate prepare stmt1;

            drop table t1, t2;
            set group_concat_max_len=default;
            {code}

            *Actual result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 3 was cut by GROUP_CONCAT()
            Warning 1260 Row 4 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}

            *Expected result:*
            {code:sql}
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            execute stmt1;
            group_concat(t1.b,t2.c)
            aaaaa
            bbbbb
            Warnings:
            Warning 1260 Row 1 was cut by GROUP_CONCAT()
            Warning 1260 Row 2 was cut by GROUP_CONCAT()
            deallocate prepare stmt1;
            {code}
            julien.fritsch Julien Fritsch made changes -
            Fix Version/s 10.8 [ 26121 ]
            sanja Oleksandr Byelkin made changes -
            Assignee Oleksandr Byelkin [ sanja ] Dmitry Shulga [ JIRAUSER47315 ]
            julien.fritsch Julien Fritsch made changes -
            Fix Version/s 10.9 [ 26905 ]
            Fix Version/s 10.10 [ 27530 ]
            igor Igor Babaev (Inactive) made changes -
            Summary Wrong message on second execution of prepare statement for GROUP_CONCAT() function with 'outer_join_with_cache=off' Wrong warnings on 2-nd execution of PS for query with GROUP_CONCAT
            igor Igor Babaev (Inactive) made changes -
            Status Open [ 1 ] Confirmed [ 10101 ]
            igor Igor Babaev (Inactive) made changes -
            Assignee Dmitry Shulga [ JIRAUSER47315 ] Igor Babaev [ igor ]
            igor Igor Babaev (Inactive) made changes -
            Status Confirmed [ 10101 ] In Progress [ 3 ]
            igor Igor Babaev (Inactive) made changes -
            Assignee Igor Babaev [ igor ] Oleksandr Byelkin [ sanja ]
            Status In Progress [ 3 ] In Review [ 10002 ]
            sanja Oleksandr Byelkin made changes -
            Assignee Oleksandr Byelkin [ sanja ] Igor Babaev [ igor ]
            Status In Review [ 10002 ] Stalled [ 10000 ]
            igor Igor Babaev (Inactive) made changes -
            Fix Version/s 10.5.25 [ 29626 ]
            Fix Version/s 10.6.18 [ 29627 ]
            Fix Version/s 10.11.8 [ 29630 ]
            Fix Version/s 11.0.6 [ 29628 ]
            Fix Version/s 11.1.5 [ 29629 ]
            Fix Version/s 11.2.4 [ 29631 ]
            Fix Version/s 11.4.2 [ 29633 ]
            Fix Version/s 10.4 [ 22408 ]
            Fix Version/s 10.5 [ 23123 ]
            Fix Version/s 10.6 [ 24028 ]
            Fix Version/s 11.0 [ 28320 ]
            Fix Version/s 11.1 [ 28549 ]
            Resolution Fixed [ 1 ]
            Status Stalled [ 10000 ] Closed [ 6 ]

            People

              igor Igor Babaev (Inactive)
              lstartseva Lena Startseva
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.