Ai
8 Star 20 Fork 10

Gitee 极速下载/sqlite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/sqlite/sqlite
克隆/下载
rowvaluefault.test 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
# 2016 June 17
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yourself and forgive others.
# May you share freely, never taking more than you give.
#
#***********************************************************************
# This file implements regression tests for SQLite library.
#
set testdir [file dirname $argv0]
source $testdir/tester.tcl
source $testdir/malloc_common.tcl
set ::testprefix rowvaluefault
do_execsql_test 1.0 {
CREATE TABLE xyz(one, two, thr, fou);
INSERT INTO xyz VALUES('A', 'A', 'A', 1);
INSERT INTO xyz VALUES('B', 'B', 'B', 2);
INSERT INTO xyz VALUES('C', 'C', 'C', 3);
INSERT INTO xyz VALUES('D', 'D', 'D', 4);
CREATE UNIQUE INDEX xyz_one_two ON xyz(one, two);
}
do_faultsim_test 1 -faults oom* -body {
execsql { SELECT fou FROM xyz WHERE (one, two, thr) = ('B', 'B', 'B') }
} -test {
faultsim_test_result {0 2}
}
do_faultsim_test 2 -faults oom* -body {
execsql { SELECT fou FROM xyz WHERE (two, thr) IS ('C', 'C') }
} -test {
faultsim_test_result {0 3}
}
do_faultsim_test 3 -faults oom* -body {
execsql { SELECT fou FROM xyz WHERE (one, two, thr) > ('B', 'B', 'B') }
} -test {
faultsim_test_result {0 {3 4}}
}
do_faultsim_test 4 -faults oom* -body {
execsql { SELECT fou FROM xyz WHERE (one, two) IN (SELECT one, two FROM xyz) }
} -test {
faultsim_test_result {0 {1 2 3 4}}
}
do_faultsim_test 5 -faults oom* -body {
execsql {
SELECT fou FROM xyz
WHERE (one, two, thr) IN (SELECT one, two, thr FROM xyz)
}
} -test {
faultsim_test_result {0 {1 2 3 4}}
}
do_faultsim_test 6 -faults oom* -body {
execsql {
SELECT fou FROM xyz
WHERE (one, two, thr) BETWEEN ('B', 'B', 'B') AND ('C', 'C', 'C') }
} -test {
faultsim_test_result {0 {2 3}}
}
do_faultsim_test 7 -faults oom* -body {
execsql {
SELECT fou FROM xyz
WHERE (one, two, thr) IN ( ('a','b','c'), ('A','A','A'), (1,2,3) );
}
} -test {
faultsim_test_result {0 1}
}
do_faultsim_test 8 -faults oom* -body {
execsql {
SELECT fou FROM xyz
WHERE (two, one) IN ( ('a','b','c'), ('A','A','A'), (1,2,3) );
}
} -test {
faultsim_test_result {1 {IN(...) element has 3 terms - expected 2}}
}
finish_test
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/mirrors/sqlite.git
git@gitee.com:mirrors/sqlite.git
mirrors
sqlite
sqlite
master

搜索帮助