Commit 4b8e8fb7 authored by Matthew Denton's avatar Matthew Denton Committed by Commit Bot

Added missing space in SQLite LPM fuzzer

This missing space may have screwed up WHERE statements when creating
indexes (or might not have, since I don't see any errors. Adding anyway)

R=metzman@chromium.org, pwnall@chromium.org

Bug: 909886
Change-Id: Idd322f43a2b715d1d282546df4c504148a5014a4
Reviewed-on: https://chromium-review.googlesource.com/c/1387837
Commit-Queue: Victor Costan <pwnall@chromium.org>
Reviewed-by: default avatarJonathan Metzman <metzman@chromium.org>
Reviewed-by: default avatarVictor Costan <pwnall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#618376}
parent 1983a217
......@@ -2271,8 +2271,10 @@ CONV_FN(CreateIndex, ci) {
ret += "(";
ret += IndexedColumnListToString(ci.icol_list());
ret += ")";
if (ci.has_where())
if (ci.has_where()) {
ret += " ";
ret += WhereStatementToString(ci.where());
}
return ret;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment