Can I use MariaDB for MySQL? #8145
-
Can I use MariaDB as drop-in replacement for MySql? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Yes, our automated tests are actually running against |
Beta Was this translation helpful? Give feedback.
-
@flexdinesh Thanks for your answer. Sorry, I noticed it quite late. That's great! |
Beta Was this translation helpful? Give feedback.
-
Has anyone does this? I am using MariaDB, we use binary(16) which is a compressed UUID, for the primary key and keystone seems to not know how to handle the binary data for queries. I get this error:
I tried to configure the list like this: marker: list({
db: {
idField: { // <============= here
kind: "random",
bytes: 16,
encoding: "hex",
},
},
access: allowAll,
// this is the fields for our User list
fields: {
// by adding isRequired, we enforce that every User should have a name
// if no name is provided, an error will be displayed
name: text({ validation: { isRequired: true } }),
},
}), But no combination of |
Beta Was this translation helpful? Give feedback.
Not at the moment. Keystone only supports 3 database types - db config.Yes, our automated tests are actually running against
mariadb:10.10
.