aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/explain.c
diff options
context:
space:
mode:
authordan <dan@noemail.net>2020-07-13 18:04:27 +0000
committerdan <dan@noemail.net>2020-07-13 18:04:27 +0000
commita7f82d9f47ca75a2f47dc14f8a8deb6730d718d0 (patch)
treee2000d1d8b1b14297c1a8790c65dd90c4a20e2b9 /ext/misc/explain.c
parent7465787b97a0a09841e343630a07ba80f1399e4a (diff)
parent5b107654e965973e68c88f90a09a3cc53bac9d8b (diff)
downloadsqlite-a7f82d9f47ca75a2f47dc14f8a8deb6730d718d0.tar.gz
sqlite-a7f82d9f47ca75a2f47dc14f8a8deb6730d718d0.zip
Merge latest trunk changes with this branch.
FossilOrigin-Name: 5ee3c27e20d12a126fb773b428bb864102b949a5b26a8d5c523753dcedf4be10
Diffstat (limited to 'ext/misc/explain.c')
-rw-r--r--ext/misc/explain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/explain.c b/ext/misc/explain.c
index 7a2fc4776..009519457 100644
--- a/ext/misc/explain.c
+++ b/ext/misc/explain.c
@@ -16,7 +16,7 @@
** Usage example:
**
** .load ./explain
-** SELECT p2 FROM explain('SELECT * FROM sqlite_master')
+** SELECT p2 FROM explain('SELECT * FROM sqlite_schema')
** WHERE opcode='OpenRead';
**
** This module was originally written to help simplify SQLite testing,