Ensure consistent column order

This commit is contained in:
Michael Kozono 2017-11-26 20:37:23 -08:00
parent 3694fe0f3d
commit e5cf23dfcf
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ module Gitlab
disable_quote = Array(disable_quote).to_set
tuples = rows.map do |row|
row.keys.map do |k|
keys.map do |k|
disable_quote.include?(k) ? row[k] : connection.quote(row[k])
end
end