mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
tools/ejabberdsql2prosody: Handle INSERT statement form where column list is specified (by skipping the column list).
This commit is contained in:
parent
45bce504d8
commit
84090686e4
1 changed files with 6 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue