finalize prepared statement in zxystream

This commit is contained in:
Ryan Clark
2015-03-09 22:15:11 -04:00
parent dc6419d80f
commit 869de1ebb5

View File

@@ -57,7 +57,11 @@ ZXYStream.prototype._read = function() {
if (error) {
stream.emit('error', error);
} else {
stream.push(lines || null);
if (lines) stream.push(lines);
else {
stream.statement.finalize();
stream.push(null);
}
}
}
}
@@ -68,4 +72,3 @@ function toLine(row) {
var y = row.y = (1 << row.z) - 1 - row.y;
return row.z + '/' + row.x + '/' + y + '\n';
}