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

DuckDB need larger stack under ASAN

    XMLWordPrintable

Details

    Description

      cmake -DWITH_ASAN=ON -DWITH_ASAN_SCOPE=ON -DWITH_UBSAN=ON         -DUPDATE_SUBMODULES=OFF         -DPLUGIN_COLUMNSTORE=NO          -DWITH_UNIT_TESTS=OFF         /source
       
      cmake --build . --target duckdb
      cmake --build .
      mysql-test/mtr --suite=duckdb --force 
       
      duckdb.drop_database                     w8 [ pass ]    498
      duckdb.dml_delete                        w4 [ pass ]    442
      duckdb.cross_engine_join                 w2 [ fail ]
              Test ended at 2026-07-20 06:16:30
       
      CURRENT_TEST: duckdb.cross_engine_join
      --- /source/storage/duckdb/mysql-test/duckdb/r/cross_engine_join.result	2026-06-30 08:35:26.845575431 +0000
      +++ /build/mysql-test/var/2/log/cross_engine_join.reject	2026-07-20 06:16:29.970290539 +0000
      @@ -17,8 +17,6 @@
       FROM t_duck d JOIN t_inno i ON d.id = i.id
       ORDER BY d.id;
       id	val	name
      -1	alpha	Alice
      -2	beta	Bob
       
       # (2) LEFT JOIN — DuckDB left, InnoDB right
       
      @@ -26,8 +24,8 @@
       FROM t_duck d LEFT JOIN t_inno i ON d.id = i.id
       ORDER BY d.id;
       id	val	name
      -1	alpha	Alice
      -2	beta	Bob
      +1	alpha	NULL
      +2	beta	NULL
       3	gamma	NULL
       
       # (3) RIGHT JOIN — InnoDB left, DuckDB right
      @@ -36,9 +34,6 @@
       FROM t_duck d RIGHT JOIN t_inno i ON d.id = i.id
       ORDER BY i.id;
       id	val	name
      -1	alpha	Alice
      -2	beta	Bob
      -NULL	NULL	Dave
       
       # (4) Cross join (cartesian product)
       
      @@ -46,22 +41,13 @@
       FROM t_duck d, t_inno i
       ORDER BY did, iid;
       did	iid
      -1	1
      -1	2
      -1	4
      -2	1
      -2	2
      -2	4
      -3	1
      -3	2
      -3	4
       
       # (5) Aggregation over cross-engine join
       
       SELECT COUNT(*), SUM(d.id)
       FROM t_duck d JOIN t_inno i ON d.id = i.id;
       COUNT(*)	SUM(d.id)
      -2	3
      +0	NULL
       
       # (6) Subquery with InnoDB table in WHERE
       
      @@ -70,8 +56,6 @@
       WHERE d.id IN (SELECT id FROM t_inno)
       ORDER BY d.id;
       id	val
      -1	alpha
      -2	beta
       
       # (7) Multiple data types
       
      @@ -102,7 +86,6 @@
       SELECT d.id, d.ti, d.bi, d.f, d.dc, d.txt, i.ti, i.bi, i.f, i.dc, i.txt
       FROM t_duck_types d JOIN t_inno_types i ON d.id = i.id;
       id	ti	bi	f	dc	txt	ti	bi	f	dc	txt
      -1	10	1000000	1.5	99.99	duck	20	2000000	3.5	88.88	inno
       
       # (8) NULL handling across engines
       
      @@ -114,8 +97,6 @@
       FROM t_duck_null d JOIN t_inno_null i ON d.id = i.id
       ORDER BY d.id;
       id	dval	ival
      -1	a	NULL
      -2	NULL	b
       
       # Cleanup
       
       
      Result length mismatch
       
       - saving '/build/mysql-test/var/2/log/duckdb.cross_engine_join/' to '/build/mysql-test/var/log/duckdb.cross_engine_join/'
      duckdb.dml_update                        w6 [ pass ]    413
      ***Warnings generated in error logs during shutdown after running tests: duckdb.cross_engine_join
       
      2026-07-20  6:16:28 0 [Warning] Plugin 'DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:28 0 [Warning] Plugin 'RUN_IN_DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  177283232 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  15773856 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  16362656 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  167215264 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  167759008 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  214810784 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  18067616 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  227541152 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
       
      duckdb.cross_engine_union                w3 [ fail ]
              Test ended at 2026-07-20 06:16:30
       
      CURRENT_TEST: duckdb.cross_engine_union
      --- /source/storage/duckdb/mysql-test/duckdb/r/cross_engine_union.result	2026-06-30 08:35:26.845575431 +0000
      +++ /build/mysql-test/var/3/log/cross_engine_union.reject	2026-07-20 06:16:30.070291601 +0000
      @@ -20,10 +20,7 @@
       id	val
       1	duck_a
       2	duck_b
      -2	inno_b
       3	duck_c
      -3	inno_c
      -4	inno_d
       
       # (2) UNION — removes duplicates
       
      @@ -35,7 +32,6 @@
       1
       2
       3
      -4
       
       # (3) UNION ALL with WHERE filters
       
      @@ -45,9 +41,7 @@
       ORDER BY id, val;
       id	val
       2	duck_b
      -2	inno_b
       3	duck_c
      -3	inno_c
       
       # (4) Three-way UNION across engines
       
      @@ -63,10 +57,7 @@
       1	duck_a
       10	extra
       2	duck_b
      -2	inno_b
       3	duck_c
      -3	inno_c
      -4	inno_d
       
       # (5) UNION with aggregation
       
      @@ -76,7 +67,7 @@
       SELECT id FROM t_inno
       ) AS combined;
       cnt
      -6
      +3
       
       # (6) UNION between two DuckDB tables (pure DuckDB, no cross-engine)
       
      @@ -98,6 +89,8 @@
       ORDER BY id;
       id
       1
      +2
      +3
       
       # (8) INTERSECT
       
      @@ -106,8 +99,6 @@
       SELECT id FROM t_inno
       ORDER BY id;
       id
      -2
      -3
       
       # Cleanup
       
       
      Result length mismatch
       
       - saving '/build/mysql-test/var/3/log/duckdb.cross_engine_union/' to '/build/mysql-test/var/log/duckdb.cross_engine_union/'
      ***Warnings generated in error logs during shutdown after running tests: duckdb.cross_engine_union
       
      2026-07-20  6:16:28 0 [Warning] Plugin 'DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:28 0 [Warning] Plugin 'RUN_IN_DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  212648096 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  166650016 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  19672224 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  170347680 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  20934816 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  229597344 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:30 0 [ERROR] FIBER: execution error: Thread stack overrun:  23705760 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
       
      duckdb.cross_engine_where                w7 [ fail ]
              Test ended at 2026-07-20 06:16:31
       
      CURRENT_TEST: duckdb.cross_engine_where
      --- /source/storage/duckdb/mysql-test/duckdb/r/cross_engine_where.result	2026-06-30 08:35:26.845575431 +0000
      +++ /build/mysql-test/var/7/log/cross_engine_where.reject	2026-07-20 06:16:30.168292642 +0000
      @@ -20,7 +20,6 @@
       FROM t_duck d JOIN t_inno i ON d.id = i.id
       WHERE i.name = 'Bob';
       id	val	name
      -2	beta	Bob
       
       # (2) WHERE on InnoDB table — range
       
      @@ -29,9 +28,6 @@
       WHERE i.score >= 70
       ORDER BY d.id;
       id	val	name	score
      -1	alpha	Alice	90
      -2	beta	Bob	80
      -3	gamma	Carol	70
       
       # (3) WHERE on InnoDB table — compound AND
       
      @@ -40,9 +36,6 @@
       WHERE i.score > 50 AND i.name < 'Dave'
         ORDER BY d.id;
       id	val	name
      -1	alpha	Alice
      -2	beta	Bob
      -3	gamma	Carol
       
       # (4) WHERE on InnoDB table — OR
       
      @@ -51,8 +44,6 @@
       WHERE i.name = 'Alice' OR i.name = 'Eve'
         ORDER BY d.id;
       id	val	name
      -1	alpha	Alice
      -5	epsilon	Eve
       
       # (5) WHERE on InnoDB table — IN list
       
      @@ -61,9 +52,6 @@
       WHERE i.id IN (1, 3, 5)
       ORDER BY d.id;
       id	val	name
      -1	alpha	Alice
      -3	gamma	Carol
      -5	epsilon	Eve
       
       # (6) WHERE on InnoDB table — BETWEEN
       
      @@ -72,9 +60,6 @@
       WHERE i.score BETWEEN 60 AND 80
       ORDER BY d.id;
       id	val	name
      -2	beta	Bob
      -3	gamma	Carol
      -4	delta	Dave
       
       # (7) LIMIT on cross-engine join
       
      @@ -83,8 +68,6 @@
       ORDER BY d.id
       LIMIT 2;
       id	val	name
      -1	alpha	Alice
      -2	beta	Bob
       
       # (8) LIMIT with OFFSET
       
      @@ -93,8 +76,6 @@
       ORDER BY d.id
       LIMIT 2 OFFSET 1;
       id	val	name
      -2	beta	Bob
      -3	gamma	Carol
       
       # (9) WHERE + LIMIT combined
       
      @@ -104,8 +85,6 @@
       ORDER BY d.id
       LIMIT 2;
       id	val	name
      -1	alpha	Alice
      -2	beta	Bob
       
       # (10) Large-ish scan to check multi-chunk fiber yield
       
      @@ -117,9 +96,6 @@
       FROM t_duck_big d JOIN t_inno_big i ON d.id = i.id
       ORDER BY d.id;
       id	label	val
      -1	start	10
      -1500	mid	15000
      -3000	end	30000
       
       # (11) COUNT over large InnoDB scan
       
      @@ -127,7 +103,7 @@
       SELECT d.id FROM t_duck_big d JOIN t_inno_big i ON d.id = i.id
       ) AS sub;
       COUNT(*)
      -3
      +0
       
       # (12) WHERE on large table — should push down
       
      @@ -136,7 +112,6 @@
       WHERE i.val > 20000
       ORDER BY d.id;
       id	label	val
      -3000	end	30000
       
       # Cleanup
       
       
      Result length mismatch
       
       - saving '/build/mysql-test/var/7/log/duckdb.cross_engine_where/' to '/build/mysql-test/var/log/duckdb.cross_engine_where/'
      ***Warnings generated in error logs during shutdown after running tests: duckdb.cross_engine_where
       
      2026-07-20  6:16:27 0 [Warning] Plugin 'DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:27 0 [Warning] Plugin 'RUN_IN_DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  193839264 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  194386080 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  230019232 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  28139680 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  225841312 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  214803616 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  192041120 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  55873696 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:29 0 [ERROR] FIBER: execution error: Thread stack overrun:  189804704 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:30 0 [ERROR] FIBER: execution error: Thread stack overrun:  251169952 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:30 0 [ERROR] FIBER: execution error: Thread stack overrun:  263369888 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:30 0 [ERROR] FIBER: execution error: Thread stack overrun:  252247200 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
       
      duckdb.charset_and_collation             w5 [ pass ]   1463
      duckdb.run_in_duckdb_access              w2 [ pass ]     89
      duckdb.decimal_high_precision            w7 [ pass ]    249
      duckdb.cross_engine_ryow                 w3 [ fail ]
              Test ended at 2026-07-20 06:16:34
       
      CURRENT_TEST: duckdb.cross_engine_ryow
      --- /source/storage/duckdb/mysql-test/duckdb/r/cross_engine_ryow.result	2026-07-19 06:15:10.010183842 +0000
      +++ /build/mysql-test/var/3/log/cross_engine_ryow.reject	2026-07-20 06:16:33.275325637 +0000
      @@ -18,11 +18,6 @@
       INSERT INTO t_inno VALUES (6,'Frank',100);
       SELECT d.id, i.name, i.score FROM t_duck d JOIN t_inno i ON d.id=i.id;
       id	name	score
      -1	Alice	90
      -2	Bob	80
      -3	Carol	70
      -4	Dave	60
      -5	Eve	50
       ROLLBACK;
       
       # (2) RYOW enabled: uncommitted writes ARE visible (read own writes)
       
      Result length mismatch
       
       - saving '/build/mysql-test/var/3/log/duckdb.cross_engine_ryow/' to '/build/mysql-test/var/log/duckdb.cross_engine_ryow/'
      ***Warnings generated in error logs during shutdown after running tests: duckdb.cross_engine_ryow
       
      2026-07-20  6:16:31 0 [Warning] Plugin 'DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:31 0 [Warning] Plugin 'RUN_IN_DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:32 0 [ERROR] FIBER: execution error: Thread stack overrun:  201367712 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
       
      duckdb.duckdb_appender_allocator_flush_threshold w7 [ pass ]    127
      duckdb.duckdb_cte                        w5 [ fail ]
              Test ended at 2026-07-20 06:16:35
       
      CURRENT_TEST: duckdb.duckdb_cte
      --- /source/storage/duckdb/mysql-test/duckdb/r/duckdb_cte.result	2026-06-30 08:35:26.847575436 +0000
      +++ /build/mysql-test/var/5/log/duckdb_cte.reject	2026-07-20 06:16:34.992343871 +0000
      @@ -15,7 +15,6 @@
       1	1	1
       WITH tmp AS (SELECT MAX(col1) FROM duckdb_table) SELECT * FROM tmp, innodb_table;
       MAX(col1)	id	col1
      -1	1	1
       
       (2) Recursive CTE
       
      @@ -46,7 +45,6 @@
       SELECT * FROM duckdb_table, tmp;
       id	col1	n
       1	1	1
      -1	1	2
       DROP TABLE duckdb_table;
       DROP TABLE innodb_table;
       DROP DATABASE duckdb_cte;
       
      Result length mismatch
       
       - saving '/build/mysql-test/var/5/log/duckdb.duckdb_cte/' to '/build/mysql-test/var/log/duckdb.duckdb_cte/'
      ***Warnings generated in error logs during shutdown after running tests: duckdb.duckdb_cte
       
      2026-07-20  6:16:33 0 [Warning] Plugin 'DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:33 0 [Warning] Plugin 'RUN_IN_DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:34 0 [ERROR] FIBER: execution error: Thread stack overrun:  165200032 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
      2026-07-20  6:16:34 0 [ERROR] FIBER: execution error: Thread stack overrun:  203284640 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
       
      duckdb.duckdb_collate                    w7 [ pass ]    216
      duckdb.duckdb_uuid                       w3 [ fail ]
              Test ended at 2026-07-20 06:16:36
       
      CURRENT_TEST: duckdb.duckdb_uuid
      --- /source/storage/duckdb/mysql-test/duckdb/r/duckdb_uuid.result	2026-07-10 02:17:50.220447490 +0000
      +++ /build/mysql-test/var/3/log/duckdb_uuid.reject	2026-07-20 06:16:35.686351241 +0000
      @@ -97,8 +97,6 @@
       FROM t_duck d JOIN t_inno i ON d.id = i.id
       ORDER BY d.id;
       tag	u
      -one	65297af6-6630-11f1-8ad2-5e1b9081e705
      -two	00000000-0000-0000-0000-000000000001
       
       # (7) UUID() function — generate, store, round-trip
       
       
      Result length mismatch
       
       - saving '/build/mysql-test/var/3/log/duckdb.duckdb_uuid/' to '/build/mysql-test/var/log/duckdb.duckdb_uuid/'
      ***Warnings generated in error logs during shutdown after running tests: duckdb.duckdb_uuid
       
      2026-07-20  6:16:34 0 [Warning] Plugin 'DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:34 0 [Warning] Plugin 'RUN_IN_DUCKDB' is of maturity level alpha while the server is stable
      2026-07-20  6:16:35 0 [ERROR] FIBER: execution error: Thread stack overrun:  142950560 bytes used of a 11534336 byte stack, and 81920 bytes needed. Consider increasing the thread_stack system variable.
       
      duckdb.ha_duckdb                         w7 [ pass ]     42
      duckdb.mdev_40379                        w7 [ pass ]     17
      duckdb.duckdb_db_table_strconvert        w5 [ pass ]    478
      duckdb.duckdb_string_func                w3 [ pass ]    578
      duckdb.alter_duckdb_column               w4 [ pass ]   5357
      duckdb.duckdb_time_func                  w3 [ pass ]    617
      duckdb.duckdb_monitor                    w5 [ pass ]   2407
      duckdb.pushdown_rewrite                  w3 [ pass ]    178
      duckdb.duckdb_sql_syntax                 w5 [ pass ]    466
      duckdb.alter_duckdb_column_copy          w7 [ pass ]   2302
      duckdb.create_table_column               w1 [ pass ]  13636
      duckdb.duckdb_set_operation              w7 [ pass ]    154
      duckdb.transaction                       w6 [ pass ]  19681
      duckdb.space_reclaim                     w2 [ pass ]  20439
      duckdb.duckdb_require_primary_key        w2 [ pass ]     36
       duckdb.feature_duckdb_data_type          w8 [ pass ]  51510
      --------------------------------------------------------------------------
      The servers were restarted 14 times
      Spent 121.395 of 62 seconds executing testcases
       
      Completed: Failed 6/30 tests, 80.00% were successful.
       
      Failing test(s): duckdb.cross_engine_join duckdb.cross_engine_union duckdb.cross_engine_where duckdb.cross_engine_ryow duckdb.duckdb_cte duckdb.duckdb_uuid
       
      The log files in var/log may give you some hint of what went wrong.
       
      If you want to report this error, MariaDB's bug tracker is found at
      https://jira.mariadb.org
       
      Errors/warnings were found in logfiles during server shutdown after running the
      following sequence(s) of tests:
          duckdb.cross_engine_join
          duckdb.cross_engine_union
          duckdb.cross_engine_where
          duckdb.cross_engine_ryow
          duckdb.duckdb_cte
          duckdb.duckdb_uuid
      1 tests were skipped, 0 by the test itself.
      
      

      pushing 60M

       
      mysql-test-run: *** ERROR: there were failing test cases
      buildbot@a2e20dd25c0d:/build$ mysql-test/mtr --suite=duckdb --force --mysqld=--thread-stack=60M
      Errors/warnings were found in logfiles during server shutdown after running the
      following sequence(s) of tests:
          duckdb.cross_engine_join
          duckdb.cross_engine_union
          duckdb.cross_engine_where
          duckdb.duckdb_cte
      1 tests were skipped, 0 by the test itself.
      

      So some adustment of stack usage might be needed too

      Attachments

        Issue Links

          Activity

            People

              danblack Daniel Black
              danblack Daniel Black
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:

                Git Integration

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