Reputation: 1417
i have been working with the JSON COLUMN_CREATE and COLUMN_JSON options in mariaDB. how do i update just one JSON column without having to extract the entire JSON column?
i see that mysql now has a JSON_SET option. is this something that mariaDB will add?
when i first switched over from mysql to mariaDB the documentation seemed to elude to mariaDB being a "drop-in" replacement for mysql.
also, i thought i read initially that if mysql comes out with a new feature, mariaDB will match the feature.
Upvotes: 0
Views: 278
Reputation: 142298
"drop-in replacement" = "marketing". However, it is mostly true.
You have ventured into a very new feature (JSON) of Oracle MySQL, for which MariaDB has not (yet) caught up. I cannot say when (or even 'if') it will catch up in this.
Meanwhile, MariaDB has added a number of features that have not (yet) been adopted by Oracle.
Upvotes: 1