Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Cannot Reproduce
-
11.4.2
-
None
Description
User defined variable containing result of `UUID()` returns different result on each select.
To reproduce run in mysql command line client:
set @b := UUID();
|
select @b;
|
select @b;
|
select @b;
|
Below are my results:
MariaDB [test]> set @b := UUID();
|
Query OK, 0 rows affected (0,032 sec)
|
|
MariaDB [test]> select @b;
|
+--------------------------------------+
|
| @b |
|
+--------------------------------------+
|
| 5981fba1-dc91-11ef-91a2-ac1f6b47855a |
|
+--------------------------------------+
|
1 row in set (0,035 sec)
|
|
MariaDB [test]> select @b;
|
+--------------------------------------+
|
| @b |
|
+--------------------------------------+
|
| 59829ca8-dc91-11ef-90e4-0cc47aa9252e |
|
+--------------------------------------+
|
1 row in set (0,042 sec)
|
|
MariaDB [test]> select @b;
|
+--------------------------------------+
|
| @b |
|
+--------------------------------------+
|
| 5981fba1-dc91-11ef-91a2-ac1f6b47855a |
|
+--------------------------------------+
|
1 row in set (0,034 sec)
|
|
MariaDB [test]> select @b;
|
+--------------------------------------+
|
| @b |
|
+--------------------------------------+
|
| 59829ca8-dc91-11ef-90e4-0cc47aa9252e |
|
+--------------------------------------+
|
1 row in set (0,041 sec)
|
|
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | Needs Feedback [ 10501 ] |
Assignee | Ramesh Sivaraman [ JIRAUSER48189 ] | |
Status | Needs Feedback [ 10501 ] | Open [ 1 ] |
Status | Open [ 1 ] | Needs Feedback [ 10501 ] |
Assignee | Ramesh Sivaraman [ JIRAUSER48189 ] | |
Status | Needs Feedback [ 10501 ] | Open [ 1 ] |
Fix Version/s | N/A [ 14700 ] | |
Resolution | Cannot Reproduce [ 5 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Could you please provide more details on how to repeat the issue and attach your .cnf file(s)
It works as expected on my machine with 11.4.2, also tried fiddle with 11.4.4