You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class User < ActiveRecord::Base
attribute :id, MySQLBinUUID::Type.new
has_many :locations_users
has_and_belongs_to_many :locations
end
class Location < ActiveRecord::Base
end
class LocationsUser < ActiveRecord::Base
attribute :user_id, MySQLBinUUID::Type.new
belongs_to :location
belongs_to :user
end
If I then try to call user.locations I get a query that looks like this:
SELECT 1 AS one FROM `locations` INNER JOIN `locations_users` ON `locations`.`id` = `locations_users`.`location_id` WHERE `locations_users`.`user_id` = x'39633065333063302d326366362d343735632d393564392d366633376236333331383461' AND `locations`.`id` = 1 LIMIT 1
where the value of locations_uses.user_id is not correct.
If I run just LocationsUser.where(user_id: "9c0e30c0-2cf6-475c-95d9-6f37b633184a"), the query looks correct and returns a result as expected:
SELECT `locations_users`.* FROM `locations_users` WHERE `locations_users`.`user_id` = x'9c0e30c02cf6475c95d96f37b633184a'
It looks like in the locations_users query, the user_id value is getting mangled, possibly related to this issue.
I have 3 tables
If I then try to call
user.locations
I get a query that looks like this:where the value of
locations_uses.user_id
is not correct.If I run just
LocationsUser.where(user_id: "9c0e30c0-2cf6-475c-95d9-6f37b633184a")
, the query looks correct and returns a result as expected:It looks like in the
locations_users
query, theuser_id
value is getting mangled, possibly related to this issue.Any suggestions?
Rails 5.2.8.1
Ruby 2.6.0
mysql-binuuid-rails 1.3.0
The text was updated successfully, but these errors were encountered: