Page MenuHomePhabricator

[keyserver] Avoid JSON cast when using MariaDB
ClosedPublic

Authored by ashoat on Jul 13 2022, 10:49 AM.
Tags
None
Referenced Files
F4120533: D4522.diff
Tue, Feb 18, 6:19 AM
Unknown Object (File)
Sat, Feb 1, 5:56 AM
Unknown Object (File)
Tue, Jan 28, 10:52 PM
Unknown Object (File)
Fri, Jan 24, 4:18 PM
Unknown Object (File)
Fri, Jan 24, 4:18 PM
Unknown Object (File)
Fri, Jan 24, 4:18 PM
Unknown Object (File)
Fri, Jan 24, 4:16 PM
Unknown Object (File)
Tue, Jan 21, 10:05 PM

Details

Summary

One difference between MySQL and MariaDB is that MySQL has a JSON column type and MariaDB doesn't.

MySQL requires that the second parameter to JSON_CONTAINS is a JSON type. MariaDB doesn't have JSON types, so it doesn't have this requirement.

We need to make sure we do the cast for MySQL, but not for MariaDB.

Depends on D4521

Test Plan

I ran the web application and clicked around a bunch. Full test plan will come later

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

keyserver/src/fetchers/message-fetchers.js
113 ↗(On Diff #14441)

Should probably make a follow-up task to the mysql migration to remove the branching logic (which you may already have).

keyserver/src/fetchers/message-fetchers.js
113 ↗(On Diff #14441)
This revision is now accepted and ready to land.Jul 17 2022, 12:53 PM