mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Make sure the schema loader callback can handle EMPTY_RESULT_CALLBACKS being
on. Ticket #406. (CVS 1065) FossilOrigin-Name: 8c163fc0c7c721b7a5fa6727b0e90bff4484c782
This commit is contained in:
@ -12,7 +12,7 @@
|
||||
#
|
||||
# This file implements tests for the PRAGMA command.
|
||||
#
|
||||
# $Id: pragma.test,v 1.5 2003/06/15 23:42:25 drh Exp $
|
||||
# $Id: pragma.test,v 1.6 2003/07/27 17:26:23 drh Exp $
|
||||
|
||||
set testdir [file dirname $argv0]
|
||||
source $testdir/tester.tcl
|
||||
@ -177,6 +177,18 @@ do_test pragma-2.2 {
|
||||
}
|
||||
sqlite_datatypes $::DB {SELECT * FROM sqlite_master}
|
||||
} {text text text integer text}
|
||||
|
||||
# Make sure we can read the schema when empty_result_callbacks are
|
||||
# turned on. Ticket #406
|
||||
do_test pragma-2.2.1 {
|
||||
execsql {
|
||||
BEGIN;
|
||||
CREATE TABLE tabx(a,b,c,d);
|
||||
ROLLBACK;
|
||||
SELECT count(*) FROM sqlite_master;
|
||||
}
|
||||
} {0}
|
||||
|
||||
do_test pragma-2.3 {
|
||||
execsql {
|
||||
CREATE TABLE t1(
|
||||
|
Reference in New Issue
Block a user