2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

cache_rows: false causes segfault

This commit is contained in:
Neil Lalonde 2016-01-12 18:45:19 -05:00
parent f19c95bcf7
commit 70c8ce2f23

View file

@ -244,7 +244,8 @@ class ImportScripts::VanillaSQL < ImportScripts::Base
end
def mysql_query(sql)
@client.query(sql, cache_rows: false)
@client.query(sql)
# @client.query(sql, cache_rows: false) #segfault: cache_rows: false causes segmentation fault
end
end