New UUID DataType in the new MariaDB 10.7 series
See original GitHub issueMariaDB has just introduced a UUID datatype in the 10.7 series .
Will there eventually be an update adding this to the MySqlGuidFormat
supported formats?
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
UUID Data Type - MariaDB Knowledge Base
The UUID data type is intended for the storage of 128-bit UUID (Universally Unique Identifier) data. See the UUID function page for more...
Read more >10.7 preview feature: UUID Data Type
We are pleased to announce the UUID data type in the 10.7 preview release of MariaDB Server. Please test it out and give...
Read more >Support new UUID type in MariaDB 10.7 · Issue #8832
MariaDB starting with 10.7 supports UUID datatype. INSERT/SELECT just like varchar, but stored in 128-bit wich is better for indexes. Can you, ...
Read more >33507 (Use native UUID data type on MariaDB 10.7+)
MariaDB 10.7 introduces UUID data type, see docs and blog post. We should correct the has_native_uuid_field feature flag and use uuid instead of...
Read more >MariaDB UUID datatype not orders correctly
MariaDB UUID datatype not orders correctly ... As I understand it, MariaDB saves UUIDs as 128-bit integers, so I don't understand this behavior....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I think the question may be: If MariaDB supports sending a
uuid
inBINARY(16)
over the wire and, if so, can MySqlConnector do requests for auuid
inBINARY(16)
? This would be helpful for when the application using the database is doing a lot of requests and processing.~ Just my 2 cents 😄
AFAICT,
Char36
is the correct type to use.If that’s about using
UUID
as the column type forGuid
values, that seems like a reasonable request (but out of the scope of MySqlConnector).