mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
tools/migration/migrator/prosody_sql.lua: Fix compatibility with PostgreSQL (thanks Timo)
This commit is contained in:
parent
2d8a08de12
commit
32c5970584
1 changed files with 5 additions and 1 deletions
|
@ -149,7 +149,11 @@ function writer(output, iter)
|
||||||
assert(stmt:execute());
|
assert(stmt:execute());
|
||||||
local stmt = assert(dbh:prepare("DELETE FROM prosody"));
|
local stmt = assert(dbh:prepare("DELETE FROM prosody"));
|
||||||
assert(stmt:execute());
|
assert(stmt:execute());
|
||||||
local insert = assert(dbh:prepare("INSERT INTO `prosody` (`host`,`user`,`store`,`key`,`type`,`value`) VALUES (?,?,?,?,?,?)"));
|
local insert_sql = "INSERT INTO `prosody` (`host`,`user`,`store`,`key`,`type`,`value`) VALUES (?,?,?,?,?,?)";
|
||||||
|
if output.driver == "PostgreSQL" then
|
||||||
|
insert_sql = insert_sql:gsub("`", "\"");
|
||||||
|
end
|
||||||
|
local insert = assert(dbh:prepare(insert_sql));
|
||||||
|
|
||||||
return function(item)
|
return function(item)
|
||||||
if not item then assert(dbh:commit()) return dbh:close(); end -- end of input
|
if not item then assert(dbh:commit()) return dbh:close(); end -- end of input
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue