提交 f52b52e7 authored 作者: christian.peter.io's avatar christian.peter.io

A subselect which used an index could lead to wrong results. Fixed.

上级 c89f8310
...@@ -18,7 +18,7 @@ Change Log ...@@ -18,7 +18,7 @@ Change Log
<h1>Change Log</h1> <h1>Change Log</h1>
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul><li> <ul><li>A subselect which used an index could lead to wrong results. Fixed.
</li></ul> </li></ul>
<h2>Version 1.2.135 (2010-05-08)</h2> <h2>Version 1.2.135 (2010-05-08)</h2>
......
...@@ -67,6 +67,7 @@ public class IndexCursor implements Cursor { ...@@ -67,6 +67,7 @@ public class IndexCursor implements Cursor {
alwaysFalse = false; alwaysFalse = false;
start = end = null; start = end = null;
inList = null; inList = null;
inColumn = null;
inResult = null; inResult = null;
inResultTested = new HashSet<Value>(); inResultTested = new HashSet<Value>();
for (IndexCondition condition : indexConditions) { for (IndexCondition condition : indexConditions) {
......
...@@ -36,6 +36,7 @@ public class TestCases extends TestBase { ...@@ -36,6 +36,7 @@ public class TestCases extends TestBase {
} }
public void test() throws Exception { public void test() throws Exception {
testPreparedSubquery2();
testPreparedSubquery(); testPreparedSubquery();
testCompareDoubleWithIntColumn(); testCompareDoubleWithIntColumn();
testDeleteIndexOutOfBounds(); testDeleteIndexOutOfBounds();
...@@ -79,7 +80,40 @@ public class TestCases extends TestBase { ...@@ -79,7 +80,40 @@ public class TestCases extends TestBase {
testCollation(); testCollation();
deleteDb("cases"); deleteDb("cases");
} }
private void testPreparedSubquery2() throws SQLException {
deleteDb("cases");
Connection conn = getConnection("cases");
Statement stat = conn.createStatement();
stat.execute("create table test(id int primary key, name varchar(255))");
stat.execute("insert into test values(1, 'Hello')");
stat.execute("insert into test values(2, 'World')");
PreparedStatement ps = conn.prepareStatement("select name from test where id in (select id from test where name = ?)");
ps.setString(1, "Hello");
ResultSet rs = ps.executeQuery();
if (rs.next()) {
if (!rs.getString("name").equals("Hello")) {
fail("'" + rs.getString("name") + "' must be 'Hello'");
}
} else {
fail("Must have a result!");
}
rs.close();
ps.setString(1, "World");
rs = ps.executeQuery();
if (rs.next()) {
if (!rs.getString("name").equals("World")) {
fail("'" + rs.getString("name") + "' must be 'World'");
}
} else {
fail("Must have a result!");
}
rs.close();
conn.close();
}
private void testPreparedSubquery() throws SQLException { private void testPreparedSubquery() throws SQLException {
deleteDb("cases"); deleteDb("cases");
Connection conn = getConnection("cases"); Connection conn = getConnection("cases");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论