Details

    • Bug
    • Status: Stalled (View Workflow)
    • Minor
    • Resolution: Unresolved
    • 1.4.2
    • 23.10
    • ExeMgr
    • None
    • 2020-2

    Description

      see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

      The query:

      select cidx, CDECIMAL1, HEX(CDECIMAL1) from DataTypeTestm order by cidx;
      

      should return

      1         -9   FFFFFFFFFFFFFFF7
      2         -8   FFFFFFFFFFFFFFF8
      3         -7   FFFFFFFFFFFFFFF9
      4         -6   FFFFFFFFFFFFFFFA
      5         -5   FFFFFFFFFFFFFFFB
      6          5   5
      7          6   6
      8          7   7
      9          8   8
      10        9   9
      11        0   0
      

      But instead returns

      1	-9	FFFF
      2	-8	FFFF
      3	-7	FFFF
      4	-6	FFFF
      5	-5	FFFF
      6	5	5
      7	6	6
      8	7	7
      9	8	8
      10	9	9
      11	0	0
      

      This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.

      Attachments

        Issue Links

          Activity

            David.Hall David Hall (Inactive) created issue -
            David.Hall David Hall (Inactive) made changes -
            Field Original Value New Value
            David.Hall David Hall (Inactive) made changes -
            Sprint 2020-2 [ 382 ]
            David.Hall David Hall (Inactive) made changes -
            Story Points 1
            tntnatbry Gagan Goel (Inactive) made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            tntnatbry Gagan Goel (Inactive) made changes -
            Resolution Not a Bug [ 6 ]
            Status In Progress [ 3 ] Closed [ 6 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            drrtuy Roman made changes -
            Assignee Gagan Goel [ tntnatbry ] Roman [ drrtuy ]
            Resolution Not a Bug [ 6 ]
            Status Closed [ 6 ] Stalled [ 10000 ]
            drrtuy Roman made changes -
            Status Stalled [ 10000 ] In Progress [ 3 ]
            drrtuy Roman made changes -
            Status In Progress [ 3 ] Stalled [ 10000 ]
            pleblanc Patrick LeBlanc (Inactive) made changes -
            Fix Version/s N/A [ 22302 ]
            Fix Version/s 1.4.3 [ 24038 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Fix Version/s 1.44 [ 24312 ]
            Fix Version/s Icebox [ 22302 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Fix Version/s 1.4.4 [ 24039 ]
            Fix Version/s 1.44 [ 24312 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Team ColumnStore Team
            David.Hall David Hall (Inactive) made changes -
            Fix Version/s 1..4.5 [ 24427 ]
            Fix Version/s 1.5.2 [ 24411 ]
            Fix Version/s 1.4.4 [ 24039 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Fix Version/s 1.4.5 [ 24424 ]
            Fix Version/s 1..4.5 [ 24427 ]
            David.Hall David Hall (Inactive) made changes -
            Fix Version/s 1.5.3 [ 24412 ]
            Fix Version/s 1.5.2 [ 24411 ]
            gdorman Gregory Dorman (Inactive) made changes -
            Fix Version/s 1.5.4 [ 24413 ]
            Fix Version/s 1.5.3 [ 24412 ]
            David.Hall David Hall (Inactive) made changes -
            Assignee Roman [ drrtuy ] David Hall [ david.hall ]
            David.Hall David Hall (Inactive) made changes -
            Fix Version/s 1.5.5 [ 24414 ]
            Fix Version/s 1.5.4 [ 24413 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Fix Version/s 5.5.1 [ 25030 ]
            Fix Version/s 5.5.1 [ 25030 ]
            Fix Version/s 1.5.5 [ 24414 ]
            Fix Version/s 1.4.5 [ 24424 ]
            David.Hall David Hall (Inactive) made changes -
            Assignee David Hall [ david.hall ] Alexander Barkov [ bar ]
            bar Alexander Barkov made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx;

            should return
            1 -9.99 FFFFFFFFFFFFFFF6
            2 -9.98 FFFFFFFFFFFFFFF6
            3 -9.97 FFFFFFFFFFFFFFF6
            4 -9.96 FFFFFFFFFFFFFFF6
            5 -9.95 FFFFFFFFFFFFFFF6
            6 9.95 A
            7 9.96 A
            8 9.97 A
            9 9.98 A
            10 9.99 A
            11 0.00 0

            But instead returns
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx;

            should return
            {noformat}
            1 -9.99 FFFFFFFFFFFFFFF6
            2 -9.98 FFFFFFFFFFFFFFF6
            3 -9.97 FFFFFFFFFFFFFFF6
            4 -9.96 FFFFFFFFFFFFFFF6
            5 -9.95 FFFFFFFFFFFFFFF6
            6 9.95 A
            7 9.96 A
            8 9.97 A
            9 9.98 A
            10 9.99 A
            11 0.00 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            bar Alexander Barkov made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx;

            should return
            {noformat}
            1 -9.99 FFFFFFFFFFFFFFF6
            2 -9.98 FFFFFFFFFFFFFFF6
            3 -9.97 FFFFFFFFFFFFFFF6
            4 -9.96 FFFFFFFFFFFFFFF6
            5 -9.95 FFFFFFFFFFFFFFF6
            6 9.95 A
            7 9.96 A
            8 9.97 A
            9 9.98 A
            10 9.99 A
            11 0.00 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sql}
            select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx;
            {code}
            should return
            {noformat}
            1 -9.99 FFFFFFFFFFFFFFF6
            2 -9.98 FFFFFFFFFFFFFFF6
            3 -9.97 FFFFFFFFFFFFFFF6
            4 -9.96 FFFFFFFFFFFFFFF6
            5 -9.95 FFFFFFFFFFFFFFF6
            6 9.95 A
            7 9.96 A
            8 9.97 A
            9 9.98 A
            10 9.99 A
            11 0.00 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            David.Hall David Hall (Inactive) made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sql}
            select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx;
            {code}
            should return
            {noformat}
            1 -9.99 FFFFFFFFFFFFFFF6
            2 -9.98 FFFFFFFFFFFFFFF6
            3 -9.97 FFFFFFFFFFFFFFF6
            4 -9.96 FFFFFFFFFFFFFFF6
            5 -9.95 FFFFFFFFFFFFFFF6
            6 9.95 A
            7 9.96 A
            8 9.97 A
            9 9.98 A
            10 9.99 A
            11 0.00 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sq
            {code}
            should return
            {noformat}
            1 -9.99 FFFFFFFFFFFFFFF6
            2 -9.98 FFFFFFFFFFFFFFF6
            3 -9.97 FFFFFFFFFFFFFFF6
            4 -9.96 FFFFFFFFFFFFFFF6
            5 -9.95 FFFFFFFFFFFFFFF6
            6 9.95 A
            7 9.96 A
            8 9.97 A
            9 9.98 A
            10 9.99 A
            11 0.00 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            David.Hall David Hall (Inactive) made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sq
            {code}
            should return
            {noformat}
            1 -9.99 FFFFFFFFFFFFFFF6
            2 -9.98 FFFFFFFFFFFFFFF6
            3 -9.97 FFFFFFFFFFFFFFF6
            4 -9.96 FFFFFFFFFFFFFFF6
            5 -9.95 FFFFFFFFFFFFFFF6
            6 9.95 A
            7 9.96 A
            8 9.97 A
            9 9.98 A
            10 9.99 A
            11 0.00 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sq
            {code}
            should return
            {noformat}
                1 -9 FFFFFFFFFFFFFFF7
                2 -8 FFFFFFFFFFFFFFF8
                3 -7 FFFFFFFFFFFFFFF9
                4 -6 FFFFFFFFFFFFFFFA
                5 -5 FFFFFFFFFFFFFFFB
                6 5 5
                7 6 6
                8 7 7
                9 8 8
               10 9 9
               11 0 0


            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            David.Hall David Hall (Inactive) made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sq
            {code}
            should return
            {noformat}
                1 -9 FFFFFFFFFFFFFFF7
                2 -8 FFFFFFFFFFFFFFF8
                3 -7 FFFFFFFFFFFFFFF9
                4 -6 FFFFFFFFFFFFFFFA
                5 -5 FFFFFFFFFFFFFFFB
                6 5 5
                7 6 6
                8 7 7
                9 8 8
               10 9 9
               11 0 0


            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sq
            {code}
            should return
            {noformat}
            1 -9 FFFFFFFFFFFFFFF7
            2 -8 FFFFFFFFFFFFFFF8
            3 -7 FFFFFFFFFFFFFFF9
            4 -6 FFFFFFFFFFFFFFFA
            5 -5 FFFFFFFFFFFFFFFB
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0


            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked lower
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked higher
            David.Hall David Hall (Inactive) made changes -
            Fix Version/s 5.6.1 [ 25031 ]
            Fix Version/s 6.1 [ 25201 ]
            Fix Version/s 5.5.1 [ 25030 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Fix Version/s 6.1 [ 25201 ]
            bar Alexander Barkov made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sq
            {code}
            should return
            {noformat}
            1 -9 FFFFFFFFFFFFFFF7
            2 -8 FFFFFFFFFFFFFFF8
            3 -7 FFFFFFFFFFFFFFF9
            4 -6 FFFFFFFFFFFFFFFA
            5 -5 FFFFFFFFFFFFFFFB
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0


            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sql}
            {code}
            should return
            {noformat}
            1 -9 FFFFFFFFFFFFFFF7
            2 -8 FFFFFFFFFFFFFFF8
            3 -7 FFFFFFFFFFFFFFF9
            4 -6 FFFFFFFFFFFFFFFA
            5 -5 FFFFFFFFFFFFFFFB
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0


            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            bar Alexander Barkov made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sql}
            {code}
            should return
            {noformat}
            1 -9 FFFFFFFFFFFFFFF7
            2 -8 FFFFFFFFFFFFFFF8
            3 -7 FFFFFFFFFFFFFFF9
            4 -6 FFFFFFFFFFFFFFFA
            5 -5 FFFFFFFFFFFFFFFB
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0


            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sql}
            {code}
            should return
            {noformat}
            1 -9 FFFFFFFFFFFFFFF7
            2 -8 FFFFFFFFFFFFFFF8
            3 -7 FFFFFFFFFFFFFFF9
            4 -6 FFFFFFFFFFFFFFFA
            5 -5 FFFFFFFFFFFFFFFB
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            bar Alexander Barkov made changes -
            Priority Major [ 3 ] Minor [ 4 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked lower
            toddstoffel Todd Stoffel (Inactive) made changes -
            Rank Ranked lower
            gdorman Gregory Dorman (Inactive) made changes -
            Fix Version/s 5.6.1 [ 25031 ]
            gdorman Gregory Dorman (Inactive) made changes -
            Fix Version/s 6.1.1 [ 25600 ]
            gdorman Gregory Dorman (Inactive) made changes -
            gdorman Gregory Dorman (Inactive) made changes -
            Fix Version/s 6.5.1 [ 25801 ]
            Fix Version/s 6.1.1 [ 25600 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Assignee Alexander Barkov [ bar ]
            drrtuy Roman made changes -
            Fix Version/s 6.4.1 [ 26046 ]
            Fix Version/s 6.3.1 [ 25801 ]
            David.Hall David Hall (Inactive) made changes -
            Fix Version/s 22.08 [ 26904 ]
            Fix Version/s 6.4.1 [ 26046 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Fix Version/s 22.08.3 [ 28456 ]
            Fix Version/s 22.08.3 [ 28456 ]
            Fix Version/s 22.08 [ 26904 ]
            David.Hall David Hall (Inactive) made changes -
            Fix Version/s 22.08.3 [ 28456 ]
            David.Hall David Hall (Inactive) made changes -
            Fix Version/s 22.11.01 [ 28458 ]
            alexey.vorovich alexey vorovich (Inactive) made changes -
            Fix Version/s 23.02 [ 28209 ]
            Fix Version/s 23.03.1 [ 28458 ]
            alexey.vorovich alexey vorovich (Inactive) made changes -
            Status Stalled [ 10000 ] In Progress [ 3 ]
            alexey.vorovich alexey vorovich (Inactive) made changes -
            Status In Progress [ 3 ] In Testing [ 10301 ]
            dleeyh Daniel Lee (Inactive) made changes -
            Assigned for Testing Daniel Lee [ dleeyh ]
            dleeyh Daniel Lee (Inactive) made changes -
            Assignee alexey vorovich [ JIRAUSER48263 ]
            Status In Testing [ 10301 ] Stalled [ 10000 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Fix Version/s 23.08 [ 28540 ]
            Fix Version/s 23.02 [ 28209 ]
            toddstoffel Todd Stoffel (Inactive) made changes -
            Assignee alexey vorovich [ JIRAUSER48263 ] Leonid Fedorov [ JIRAUSER48443 ]
            kirill.perov@mariadb.com Kirill Perov (Inactive) made changes -
            Description see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sql}
            {code}
            should return
            {noformat}
            1 -9 FFFFFFFFFFFFFFF7
            2 -8 FFFFFFFFFFFFFFF8
            3 -7 FFFFFFFFFFFFFFF9
            4 -6 FFFFFFFFFFFFFFFA
            5 -5 FFFFFFFFFFFFFFFB
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.
            see mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql

            The query:
            {code:sql}
            select cidx, CDECIMAL1, HEX(CDECIMAL1) from DataTypeTestm order by cidx;
            {code}
            should return
            {noformat}
            1 -9 FFFFFFFFFFFFFFF7
            2 -8 FFFFFFFFFFFFFFF8
            3 -7 FFFFFFFFFFFFFFF9
            4 -6 FFFFFFFFFFFFFFFA
            5 -5 FFFFFFFFFFFFFFFB
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            But instead returns
            {noformat}
            1 -9 FFFF
            2 -8 FFFF
            3 -7 FFFF
            4 -6 FFFF
            5 -5 FFFF
            6 5 5
            7 6 6
            8 7 7
            9 8 8
            10 9 9
            11 0 0
            {noformat}

            This appears to only affect decimal types. I looked in the utils/funcexp/hex.cpp code and no changes there should have caused this.

            People

              leonid.fedorov Leonid Fedorov
              David.Hall David Hall (Inactive)
              Daniel Lee Daniel Lee (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              9 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.