tools/ejabberdsql2prosody: Handle INSERT statement form where column list is specified (by skipping the column list).

This commit is contained in:
Waqas Hussain 2012-02-05 00:10:13 +05:00
parent 45bce504d8
commit 84090686e4

View file

@ -129,7 +129,12 @@ local function readInsert()
end
end
local tname = readTableName();
for ch in ("` VALUES "):gmatch(".") do read(ch); end -- expect this
read("`"); read(" ") -- expect this
if peek() == "(" then -- skip column list
repeat until read() == ")";
read(" ");
end
for ch in ("VALUES "):gmatch(".") do read(ch); end -- expect this
local tuples = readTuples();
read(";"); read("\n");
return tname, tuples;