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

LP:849717 - Crash in Item_func::fix_fields on second execution of a prepared statement with semijoin

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Resolution: Fixed
    • None
    • None
    • None

    Description

      The following query:

      SELECT *
      FROM t2
      LEFT JOIN t1 ON t2.a != 0
      AND ( 'j' , 'r' ) IN (
      SELECT b , a
      FROM t3
      );

      crashes as follows when executed twice as a prepared statement with semijoin:

      #4 <signal handler called>
      #5 0x081d838c in Item_ref::fix_fields (this=0xae6138a8, thd=0x9c3c6b8, reference=0xae613a38) at item.cc:6417
      #6 0x081f3adb in Item_func::fix_fields (this=0xae6139d8, thd=0x9c3c6b8, ref=0xae613dac) at item_func.cc:180
      #7 0x08215327 in Item_cond::fix_fields (this=0xae613cf8, thd=0x9c3c6b8, ref=0x0) at item_cmpfunc.cc:4129
      #8 0x08249bee in Item_in_subselect::create_row_in_to_exists_cond (this=0xae62aa80, join=0xae635280,
      where_item=0xae63a4a8, having_item=0xae63a4ac) at item_subselect.cc:2141
      #9 0x08249e13 in Item_in_subselect::create_in_to_exists_cond (this=0xae62aa80, join_arg=0xae635280)
      at item_subselect.cc:2197
      #10 0x083e3ea6 in JOIN::choose_subquery_plan (this=0xae635280, join_tables=0) at opt_subselect.cc:4462
      #11 0x0832364a in make_join_statistics (join=0xae635280, tables_list=..., conds=0x0, keyuse_array=0xae63a3c0)
      at sql_select.cc:3544
      #12 0x0831b23c in JOIN::optimize (this=0xae635280) at sql_select.cc:1112
      #13 0x081b63c2 in st_select_lex::optimize_unflattened_subqueries (this=0xae62911c) at sql_lex.cc:3126
      #14 0x083e3bcf in JOIN::optimize_unflattened_subqueries (this=0xae62cdf0) at opt_subselect.cc:4337
      #15 0x0831ce0e in JOIN::optimize (this=0xae62cdf0) at sql_select.cc:1621
      #16 0x08321015 in mysql_select (thd=0x9c3c6b8, rref_pointer_array=0xae629258, tables=0xae629950, wild_num=0,
      fields=..., conds=0x0, og_num=0, order=0x0, group=0x0, having=0x0, proc_param=0x0, select_options=2416200192,
      result=0xae62ac88, unit=0xae628e3c, select_lex=0xae62911c) at sql_select.cc:2886
      #17 0x08318e6b in handle_select (thd=0x9c3c6b8, lex=0xae628de0, result=0xae62ac88, setup_tables_done_option=0)
      at sql_select.cc:283
      #18 0x082b3cb9 in execute_sqlcom_select (thd=0x9c3c6b8, all_tables=0xae629950) at sql_parse.cc:5102
      #19 0x082aaaca in mysql_execute_command (thd=0x9c3c6b8) at sql_parse.cc:2247
      #20 0x08363658 in Prepared_statement::execute (this=0xae717b10, expanded_query=0xae9e070c, open_cursor=false)
      at sql_prepare.cc:3735
      #21 0x08362b73 in Prepared_statement::execute_loop (this=0xae717b10, expanded_query=0xae9e070c, open_cursor=false,
      packet=0x0, packet_end=0x0) at sql_prepare.cc:3416
      #22 0x08361442 in mysql_sql_stmt_execute (thd=0x9c3c6b8) at sql_prepare.cc:2641
      #23 0x082aaaf3 in mysql_execute_command (thd=0x9c3c6b8) at sql_parse.cc:2256
      #24 0x082b62e8 in mysql_parse (thd=0x9c3c6b8, rawbuf=0xae612a10 "EXECUTE st1", length=11, found_semicolon=0xae9e1228)
      at sql_parse.cc:6102
      #25 0x082a8710 in dispatch_command (command=COM_QUERY, thd=0x9c3c6b8, packet=0x9c95549 "EXECUTE st1", packet_length=11)
      at sql_parse.cc:1221
      #26 0x082a7b6b in do_command (thd=0x9c3c6b8) at sql_parse.cc:916
      #27 0x082a4af5 in handle_one_connection (arg=0x9c3c6b8) at sql_connect.cc:1187
      #28 0x00821919 in start_thread () from /lib/libpthread.so.0
      #29 0x0076acce in clone () from /lib/libc.so.6

      minimal optimizer switch: semijoin=on;

      full optimizer switch: index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,index_merge_ sort_intersection=off,index_condition_pushdown=on,derived_merge=off,derived_with_keys=off,firstmatch=off,loosescan=off,m aterialization=off,in_to_exists=on,semijoin=off,partial_match_rowid_merge=on,partial_match_table_scan=on,subquery_cache= off,mrr=off,mrr_cost_based=off,mrr_sort_keys=off,join_cache_incremental=on,join_cache_hashed=on,join_cache_bka=on,optimi ze_join_buffer_size=off,table_elimination=on

      explain:

      id select_type table type possible_keys key key_len ref rows Extra
      1 PRIMARY t2 system NULL NULL NULL NULL 0 const row not found
      1 PRIMARY t1 system NULL NULL NULL NULL 0 const row not found
      2 DEPENDENT SUBQUERY NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables

      revision-id: <email address hidden>
      date: 2011-09-10 18:01:27 +0300
      build-date: 2011-09-14 09:12:12 +0300
      revno: 3183
      branch-nick: maria-5.3

      test case:

      SET SESSION optimizer_switch = 'semijoin=on';

      CREATE TABLE t1 (a int);
      CREATE TABLE t2 (a int);
      CREATE TABLE t3 (a int, b int) ;

      PREPARE st1 FROM "
      SELECT *
      FROM t2
      LEFT JOIN t1 ON t2.a != 0
      AND ( 'j' , 'r' ) IN (
      SELECT b , a
      FROM t3
      );
      ";
      EXECUTE st1;
      EXECUTE st1;

      Attachments

        Activity

          People

            psergei Sergei Petrunia
            philipstoev Philip Stoev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 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.