1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

In the win32longpath test, move the journal mode change down where it was intended to be.

FossilOrigin-Name: 5cead293bbbcddd7d0976db41133e40704efcc99
This commit is contained in:
mistachkin
2013-08-28 07:42:43 +00:00
parent 3741827ea1
commit 70e9ffa3bb
3 changed files with 13 additions and 13 deletions

View File

@ -112,12 +112,6 @@ do_test 1.2 {
sqlite3 db3 $fileName -vfs win32-longpath
do_test 1.3 {
db3 eval {
PRAGMA journal_mode = WAL;
}
} {wal}
do_test 1.4 {
db3 eval {
BEGIN EXCLUSIVE;
CREATE TABLE t1(x);
@ -135,6 +129,12 @@ db3 close
sqlite3 db3 $fileName -vfs win32-longpath
do_test 1.4 {
db3 eval {
PRAGMA journal_mode = WAL;
}
} {wal}
do_test 1.5 {
db3 eval {
BEGIN EXCLUSIVE;