mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 11:13:38 +08:00
DbHelper.find: column.table? strike that, reverse it
This commit is contained in:
parent
8d57c712c3
commit
7e5f5a0b6b
|
@ -33,7 +33,7 @@ class DbHelper
|
|||
column_name = rc["column_name"]
|
||||
result = connection.async_exec("SELECT #{column_name} FROM #{table_name} WHERE #{column_name} LIKE $1", args) rescue nil
|
||||
if result&.ntuples > 0
|
||||
found["#{column_name}.#{table_name}"] = result.map {|r| r[column_name]}
|
||||
found["#{table_name}.#{column_name}"] = result.map {|r| r[column_name]}
|
||||
end
|
||||
end
|
||||
found
|
||||
|
|
Loading…
Reference in New Issue
Block a user