MariaDB [game-configuration]> SELECT * FROM providers;
|
+--------------------------------------+----------------------------+----------------------------+-----------+-----------+-----------+
|
| id | created_at | updated_at | name | slug | is_active |
|
+--------------------------------------+----------------------------+----------------------------+-----------+-----------+-----------+
|
| 1ee24792-8647-6f3e-8061-0242ac12006b | 2023-07-17 08:08:48.240570 | 2023-07-17 08:08:48.240570 | <masked> | <masked> | 1 |
|
| 1ee24792-8699-6424-b01e-0242ac12006b | 2023-07-17 08:08:48.271552 | 2023-07-17 08:08:48.271552 | <masked> | <masked> | 1 |
|
| 1ee24792-86be-6418-91c8-0242ac12006b | 2023-07-17 08:08:48.286671 | 2023-07-17 11:10:12.266117 | <masked> | <masked> | 1 |
|
+--------------------------------------+----------------------------+----------------------------+-----------+-----------+-----------+
|
3 rows in set (0.003 sec)
|
|
MariaDB [game-configuration]> SELECT * FROM providers WHERE id = '1ee24792-86be-6418-91c8-0242ac12006b';
|
Empty set (0.000 sec)
|
|
MariaDB [game-configuration]> CHECK TABLE providers EXTENDED;
|
+------------------------------+-------+----------+----------+
|
| Table | Op | Msg_type | Msg_text |
|
+------------------------------+-------+----------+----------+
|
| game-configuration.providers | check | status | OK |
|
+------------------------------+-------+----------+----------+
|
1 row in set (0.000 sec)
|
|
MariaDB [game-configuration]> ALTER TABLE providers CHANGE COLUMN id id CHAR(36);
|
Query OK, 3 rows affected (0.012 sec)
|
Records: 3 Duplicates: 0 Warnings: 0
|
|
MariaDB [game-configuration]> SELECT * FROM providers WHERE id = '1ee24792-86be-6418-91c8-0242ac12006b';
|
+--------------------------------------+----------------------------+----------------------------+----------+----------+-----------+
|
| id | created_at | updated_at | name | slug | is_active |
|
+--------------------------------------+----------------------------+----------------------------+----------+----------+-----------+
|
| 1ee24792-86be-6418-91c8-0242ac12006b | 2023-07-17 08:08:48.286671 | 2023-07-17 11:10:12.266117 | <masked> | <masked> | 1 |
|
+--------------------------------------+----------------------------+----------------------------+----------+----------+-----------+
|
1 row in set (0.000 sec)
|
|
MariaDB [game-configuration]> ALTER TABLE providers CHANGE COLUMN id id UUID;
|
Query OK, 3 rows affected (0.011 sec)
|
Records: 3 Duplicates: 0 Warnings: 0
|
|
MariaDB [game-configuration]> SELECT * FROM providers WHERE id = '1ee24792-86be-6418-91c8-0242ac12006b';
|
+--------------------------------------+----------------------------+----------------------------+----------+----------+-----------+
|
| id | created_at | updated_at | name | slug | is_active |
|
+--------------------------------------+----------------------------+----------------------------+----------+----------+-----------+
|
| 1ee24792-86be-6418-91c8-0242ac12006b | 2023-07-17 08:08:48.286671 | 2023-07-17 11:10:12.266117 | <masked> | <masked> | 1 |
|
+--------------------------------------+----------------------------+----------------------------+----------+----------+-----------+
|
1 row in set (0.000 sec)
|
Test case:
--- a/plugin/type_uuid/mysql-test/type_uuid/order.test
+++ b/plugin/type_uuid/mysql-test/type_uuid/order.test
@@ -16,6 +16,7 @@ let $datadir= `select @@datadir`;
select * from t2 order by b;
select * from t2 order by a;
show create table t2;
+repair table t2;
explain select * from t1 left join t2 on (t1.a=t2.a);