diff options
author | drh <drh@noemail.net> | 2015-04-23 13:49:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-04-23 13:49:53 +0000 |
commit | 6ea60c7c5362abb262aa31bc3c0b52338633b1ac (patch) | |
tree | 7458b385418e2d70d342d1ae18f8924adb716739 /src/expr.c | |
parent | 850b0d031d6097e6d8a45a801b1370c61d152293 (diff) | |
parent | 41148f83c47b0d196f9d11aaad89d3528ecb4830 (diff) | |
download | sqlite-6ea60c7c5362abb262aa31bc3c0b52338633b1ac.tar.gz sqlite-6ea60c7c5362abb262aa31bc3c0b52338633b1ac.zip |
Merge the latest trunk enhancements and fixes into the sessions branch.
FossilOrigin-Name: 4e5f17d189eb0578a544c21fc150f9e2ee3428e3
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 3f8bd942e..115af2059 100644 --- a/src/expr.c +++ b/src/expr.c @@ -3383,7 +3383,7 @@ void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){ break; } case TK_ID: { - sqlite3TreeViewLine(pView,"ID %Q", pExpr->u.zToken); + sqlite3TreeViewLine(pView,"ID \"%w\"", pExpr->u.zToken); break; } #ifndef SQLITE_OMIT_CAST |