Commit d0999b9
committed
minor #903 [Store][MariaDB] Use UUID type instead of Binary (lyrixx)
This PR was merged into the main branch.
Discussion
----------
[Store][MariaDB] Use UUID type instead of Binary
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| Docs? | no
| Issues |
| License | MIT
Binary type is really painful
It needs to be casted to be able to read it. There is no native function
to do that in MariaDB. And except for HUGE amount of data, it does not
make a big deference from char(36). I mean, there is a trade off to find
between perf and DX.
ANYWAY, MariaDB comes from a native UUID type that solves all issues!
Let's use it.
Commits
-------
c5dc4d9 [Store][MariaDB] Use UUID type instead of BinaryFile tree
2 files changed
+5
-5
lines changed- src/store
- src/Bridge/MariaDb
- tests/Bridge/MariaDb
2 files changed
+5
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
129 | | - | |
| 129 | + | |
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
| |||
173 | 173 | | |
174 | 174 | | |
175 | 175 | | |
176 | | - | |
| 176 | + | |
177 | 177 | | |
178 | 178 | | |
179 | 179 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
107 | | - | |
| 107 | + | |
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
| |||
0 commit comments