提交 2da809da 编写于 作者: E Emilio Tagua 提交者: Santiago Pastorino

No need to use inject here.

Signed-off-by: NSantiago Pastorino <santiago@wyeworks.com>
上级 ea35ccfe
......@@ -276,7 +276,7 @@ def select_rows(sql, name = nil)
rows = []
result.each { |row| rows << row }
result.free
@connection.more_results && @connection.next_result # invoking stored procedures with CLIENT_MULTI_RESULTS requires this to tidy up else connection will be dropped
@connection.more_results && @connection.next_result # invoking stored procedures with CLIENT_MULTI_RESULTS requires this to tidy up else connection will be dropped
rows
end
......@@ -358,10 +358,10 @@ def structure_dump #:nodoc:
sql = "SHOW TABLES"
end
select_all(sql).inject("") do |structure, table|
select_all(sql).map do |table|
table.delete('Table_type')
structure += select_one("SHOW CREATE TABLE #{quote_table_name(table.to_a.first.last)}")["Create Table"] + ";\n\n"
end
select_one("SHOW CREATE TABLE #{quote_table_name(table.to_a.first.last)}")["Create Table"] + ";\n\n"
end.join("")
end
def recreate_database(name, options = {}) #:nodoc:
......@@ -620,7 +620,7 @@ def select(sql, name = nil)
rows = []
result.each_hash { |row| rows << row }
result.free
@connection.more_results && @connection.next_result # invoking stored procedures with CLIENT_MULTI_RESULTS requires this to tidy up else connection will be dropped
@connection.more_results && @connection.next_result # invoking stored procedures with CLIENT_MULTI_RESULTS requires this to tidy up else connection will be dropped
rows
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册