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 ]

            Investigated this issue. ColumnStore creates the correct string with length 16, however the server truncates the field length when the string is sent to it via store() call in fetchNextRow().

            There is an open server issue for this: https://jira.mariadb.org/browse/MDEV-20548

            Closing this issue.

            tntnatbry Gagan Goel (Inactive) added a comment - Investigated this issue. ColumnStore creates the correct string with length 16, however the server truncates the field length when the string is sent to it via store() call in fetchNextRow(). There is an open server issue for this: https://jira.mariadb.org/browse/MDEV-20548 Closing this issue.
            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 ]
            drrtuy Roman added a comment -

            Opened as a notification.

            drrtuy Roman added a comment - Opened as a notification.
            pleblanc Patrick LeBlanc (Inactive) made changes -
            Fix Version/s N/A [ 22302 ]
            Fix Version/s 1.4.3 [ 24038 ]

            changed the fix version to n/a because it was messing up daniel's accounting. Change it to whatever is appropriate once it's fixed.

            pleblanc Patrick LeBlanc (Inactive) added a comment - changed the fix version to n/a because it was messing up daniel's accounting. Change it to whatever is appropriate once it's fixed.
            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 ]

            The ref file (mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql.ref.log) is temporarily changed to match (incorrect) output from ColumnStore. We need to revert it back when MDEV-20548 is fixed.

            tntnatbry Gagan Goel (Inactive) added a comment - The ref file (mysql/queries/working_tpch1/qa_fe_cnxFunctions/hex.sql.ref.log) is temporarily changed to match (incorrect) output from ColumnStore. We need to revert it back when MDEV-20548 is fixed.
            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 ]

            MDEV-20548 is not done, so we cannot do this for 1..5.3.

            gdorman Gregory Dorman (Inactive) added a comment - MDEV-20548 is not done, so we cannot do this for 1..5.3.
            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.
            bar Alexander Barkov added a comment - - edited

            How to repeat the problem:

            First, I create the table:

            cd mariadb-columnstore-regression-test
            mysql test < mysql/scripts/create_datatypetestm.sql 
            

            Now run this query:

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

            +------+-----------+----------------+
            | cidx | CDECIMAL1 | HEX(CDECIMAL1) |
            +------+-----------+----------------+
            |    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              |
            +------+-----------+----------------+
            

            Notice, the FFFF in the last column is wrong.

            Now if I change the engine from ColumnStore to InnoDB, the results become correct:

            alter table datatypetestm engine=innodb;
            select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx;
            

            +------+-----------+------------------+
            | cidx | CDECIMAL1 | HEX(CDECIMAL1)   |
            +------+-----------+------------------+
            |    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                |
            +------+-----------+------------------+
            

            bar Alexander Barkov added a comment - - edited How to repeat the problem: First, I create the table: cd mariadb-columnstore-regression-test mysql test < mysql/scripts/create_datatypetestm.sql Now run this query: select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx; +------+-----------+----------------+ | cidx | CDECIMAL1 | HEX(CDECIMAL1) | +------+-----------+----------------+ | 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 | +------+-----------+----------------+ Notice, the FFFF in the last column is wrong. Now if I change the engine from ColumnStore to InnoDB, the results become correct: alter table datatypetestm engine=innodb; select cidx, CDECIMAL1, HEX(CDECIMAL1) from datatypetestm order by cidx; +------+-----------+------------------+ | cidx | CDECIMAL1 | HEX(CDECIMAL1) | +------+-----------+------------------+ | 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 | +------+-----------+------------------+
            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.