aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-03-24 14:57:02 +0000
committerdrh <drh@noemail.net>2015-03-24 14:57:02 +0000
commit466fd815fbdfce266f33ee61c8d06751a6170dc0 (patch)
treec11d4fd5735e0fa97481578f98534d525fbe7b8b /src
parentf496a7dc81dd0b2cc0c823a13a836f6a22001a4f (diff)
downloadsqlite-466fd815fbdfce266f33ee61c8d06751a6170dc0.tar.gz
sqlite-466fd815fbdfce266f33ee61c8d06751a6170dc0.zip
Simplify the EXPLAIN output of virtual table P4 parameters to only show the
pointer to the sqlite3_vtab object and omit the sqlite3_module object. FossilOrigin-Name: 85610bbbc60cb4a6ec856123447fdb2ba948e52f
Diffstat (limited to 'src')
-rw-r--r--src/vdbeaux.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vdbeaux.c b/src/vdbeaux.c
index 25840ccde..9c5d9acca 100644
--- a/src/vdbeaux.c
+++ b/src/vdbeaux.c
@@ -1118,8 +1118,7 @@ static char *displayP4(Op *pOp, char *zTemp, int nTemp){
#ifndef SQLITE_OMIT_VIRTUALTABLE
case P4_VTAB: {
sqlite3_vtab *pVtab = pOp->p4.pVtab->pVtab;
- sqlite3_snprintf(nTemp, zTemp, "vtab:%p:%p",
- pVtab, pVtab ? pVtab->pModule : (sqlite3_module*)0);
+ sqlite3_snprintf(nTemp, zTemp, "vtab:%p", pVtab);
break;
}
#endif