Details
-
Bug
-
Status: Stalled (View Workflow)
-
Minor
-
Resolution: Unresolved
-
1.4.2
-
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
- is blocked by
-
MDEV-20548 Unexpected error on CREATE..SELECT HEX(num)
-
- Closed
-
- is part of
-
MCOL-3747 Regression in 1.4 working_ssb_compareLogOnly/sub/order_limit_sub
-
- Closed
-
Activity
Sprint | 2020-2 [ 382 ] |
Story Points | 1 |
Status | Open [ 1 ] | In Progress [ 3 ] |
Resolution | Not a Bug [ 6 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Rank | Ranked higher |
Assignee | Gagan Goel [ tntnatbry ] | Roman [ drrtuy ] |
Resolution | Not a Bug [ 6 ] | |
Status | Closed [ 6 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | Stalled [ 10000 ] |
Fix Version/s | N/A [ 22302 ] | |
Fix Version/s | 1.4.3 [ 24038 ] |
Rank | Ranked higher |
Rank | Ranked higher |
Fix Version/s | 1.44 [ 24312 ] | |
Fix Version/s | Icebox [ 22302 ] |
Fix Version/s | 1.4.4 [ 24039 ] | |
Fix Version/s | 1.44 [ 24312 ] |
Team | ColumnStore Team |
Fix Version/s | 1..4.5 [ 24427 ] | |
Fix Version/s | 1.5.2 [ 24411 ] | |
Fix Version/s | 1.4.4 [ 24039 ] |
Fix Version/s | 1.4.5 [ 24424 ] | |
Fix Version/s | 1..4.5 [ 24427 ] |
Fix Version/s | 1.5.3 [ 24412 ] | |
Fix Version/s | 1.5.2 [ 24411 ] |
Fix Version/s | 1.5.4 [ 24413 ] | |
Fix Version/s | 1.5.3 [ 24412 ] |
Assignee | Roman [ drrtuy ] | David Hall [ david.hall ] |
Fix Version/s | 1.5.5 [ 24414 ] | |
Fix Version/s | 1.5.4 [ 24413 ] |
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 ] |
Assignee | David Hall [ david.hall ] | Alexander Barkov [ bar ] |
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. |
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. |
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. |
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. |
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. |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked higher |
Rank | Ranked lower |
Rank | Ranked higher |
Fix Version/s | 5.6.1 [ 25031 ] | |
Fix Version/s | 6.1 [ 25201 ] | |
Fix Version/s | 5.5.1 [ 25030 ] |
Fix Version/s | 6.1 [ 25201 ] |
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. |
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. |
Priority | Major [ 3 ] | Minor [ 4 ] |
Rank | Ranked lower |
Rank | Ranked lower |
Fix Version/s | 5.6.1 [ 25031 ] |
Fix Version/s | 6.1.1 [ 25600 ] |
Link |
This issue is blocked by |
Fix Version/s | 6.5.1 [ 25801 ] | |
Fix Version/s | 6.1.1 [ 25600 ] |
Assignee | Alexander Barkov [ bar ] |
Fix Version/s | 6.4.1 [ 26046 ] | |
Fix Version/s | 6.3.1 [ 25801 ] |
Fix Version/s | 22.08 [ 26904 ] | |
Fix Version/s | 6.4.1 [ 26046 ] |
Fix Version/s | 22.08.3 [ 28456 ] | |
Fix Version/s | 22.08.3 [ 28456 ] | |
Fix Version/s | 22.08 [ 26904 ] |
Fix Version/s | 22.08.3 [ 28456 ] |
Fix Version/s | 22.11.01 [ 28458 ] |
Fix Version/s | 23.02 [ 28209 ] | |
Fix Version/s | 23.03.1 [ 28458 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | In Testing [ 10301 ] |
Assigned for Testing | Daniel Lee [ dleeyh ] |
Assignee | alexey vorovich [ JIRAUSER48263 ] | |
Status | In Testing [ 10301 ] | Stalled [ 10000 ] |
Fix Version/s | 23.08 [ 28540 ] | |
Fix Version/s | 23.02 [ 28209 ] |
Assignee | alexey vorovich [ JIRAUSER48263 ] | Leonid Fedorov [ JIRAUSER48443 ] |
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. |
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.