1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.lang.streamsTest
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.lang;
import java.io.IOException;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.DatabasePropertyTestSetup;
/**
This tests streams, and when we should not materialize it. Beetle entry 4896, 4955.
Some of the code comes from conn/largeStreams.java. But this program figures out whether
a stream is materialized or not in a different way. Part of the reason is that this test
should be run nightly to catch regressions and shouldn't require too much disk space. It
figures out whether a stream is materialized or not by comparing the stack levels of different
cases. The stack level is when reading the last byte of the stream. According to the current
code, the stack is about 10 levels deeper when reading the stream from store per page (not
materialized before hand), comparing to the case when materializing from sql language layer.
We don't expect this to change dramatically for some time. And this can always be adjusted
when needed.
For bug 5592 - match db's limits for long varchar which is 32700. In order to enforce that limit
we now materialize the stream to make sure we are not trying to overstuff data in long varchar.
Because of this, I had to make some changes into the stack level checking for long varchars.
Converted to Junit based StreamsTest from the old streams.java test.
*/
public class StreamsTest extends BaseJDBCTestCase {
public StreamsTest(String name) {
super(name);
}
/**
* Only runs embedded as it is checking stack depths
* of when certain operations happen to streams.
* Stack depths from the network server would be different
* and test is not designed work with a network client.
*/
public static Test suite() {
Test test = new BaseTestSuite(StreamsTest.class, "StreamsTest");
test = DatabasePropertyTestSetup.singleProperty(test,
"derby.storage.pageSize", "2048");
return new CleanDatabaseTestSetup(test) {
protected void decorateSQL(Statement s) throws SQLException
{
s.executeUpdate(
"create table t1 (id int, pid int, lvc long varchar, " +
"lvb long varchar for bit data)");
s.executeUpdate("create table t2 (id int, pid int, " +
"lvc long varchar, lvb long varchar for bit data)");
s.executeUpdate("create trigger tr21 after insert on t2 " +
"for each statement values 1");
s.executeUpdate("create table t3 (id int not null primary key, " +
"pid int, lvc long varchar, lvb long varchar for bit data, " +
"CONSTRAINT FK1 Foreign Key(pid) REFERENCES T3 (id))");
s.executeUpdate("create table t4 (id int, longcol long varchar)");
s.executeUpdate("create table t5 (id int, longcol long varchar)");
}
};
}
/**
* Unique values for primary keys.
*/
private int pkCount;
public void testStreams() throws Exception {
getConnection().setAutoCommit(false);
Statement s = createStatement();
PreparedStatement ps = prepareStatement(
"insert into t1 values(?, ?, ?,?)");
int level1 = insertLongString(ps, 8, true);
// materialized insert: got reader stack level
ps.close();
ps = prepareStatement("insert into t2 values(?, ?, ?,?)");
int level2 = insertLongString(ps, 8, true);
// materialized insert (for trigger): got reader stack level
assertEquals("FAILED!! level difference not expected since streams are materialized.",
level1, level2);
ps.close();
ps = prepareStatement("insert into t3 values(?, ?, ?,?)");
int level3 = insertLongString(ps, 8, true);
ps.close();
// self ref foreign key insert(should not materialize):
// got reader stack level");
assertEquals("FAILED!! should not materialize in this case.",
level3, level1);
rollback();
s.executeUpdate(
"insert into t3 values (1,1,'a',null)," +
"(2,2,'b',null), (3,3,'c',null)");
ps = prepareStatement("update t3 set id = ?, lvc = ? where pid = 2");
level1 = insertLongString(ps, 8, false);
ps.close();
// materialized for multiple row update: got reader stack level
ps = prepareStatement("update t3 set id = ?, lvc = ? where pid = 2 " +
"and id = 2");
level2 = insertLongString(ps, 8, false);
ps.close();
// single row update: got reader stack level
assertEquals("FAILED!! level difference not expected because streams are materialized with fix for bug 5592.",
level1, level2);
s.executeUpdate("insert into t4 values (1, 'ccccc')");
ps = prepareStatement("insert into t4 values(?, ?)");
insertLongString(ps, 6, false);
s.executeUpdate("insert into t4 values (3, 'abbb')");
s.executeUpdate("insert into t4 values (4, 'bbbbbb')");
insertLongString(ps, 5, false);
ps.close();
ResultSet rs = s
.executeQuery("select id, cast(longcol as varchar(8192)) lcol from t4 order by lcol");
assertTrue(rs.next()); // 3, abbb
assertEquals(3, rs.getInt(1));
assertEquals("abbb", rs.getString(2));
assertTrue(rs.next()); // 4, bbbbbb
assertEquals(4, rs.getInt(1));
assertEquals("bbbbbb", rs.getString(2));
assertTrue(rs.next()); // 2, bbbbbb... (length 5393)
assertEquals(2, rs.getInt(1));
String col2 = rs.getString(2);
assertNotNull(col2);
assertEquals(5393, col2.length());
for (int i = 0; i < col2.length(); i++)
assertEquals('b', col2.charAt(i));
assertTrue(rs.next()); // 2, bbbbbb... (length 6417)
assertEquals(2, rs.getInt(1));
col2 = rs.getString(2);
assertNotNull(col2);
assertEquals(6417, col2.length());
for (int i = 0; i < col2.length(); i++)
assertEquals('b', col2.charAt(i));
assertTrue(rs.next()); // 1, 'ccccc'
assertEquals(1, rs.getInt(1));
assertEquals("ccccc", rs.getString(2));
assertFalse(rs.next());
rs.close();
s.executeUpdate("insert into t5 values (1, 'bbbbbb')");
ps = prepareStatement("insert into t5 values(?, ?)");
insertLongString(ps, 5, false);
insertLongString(ps, 7, false);
ps.close();
s.executeUpdate("insert into t5 values (3, 'aaaaabbbbbba')");
s.executeUpdate("insert into t5 values (4, 'bbbbbbbbb')");
rs = s
.executeQuery("select t4.id, t4.longcol, t5.id, cast(t5.longcol as varchar(8192)) lcol from t4, t5 where cast(t4.longcol as varchar(8192)) = cast(t5.longcol as varchar(8192)) order by lcol");
assertTrue(rs.next());
assertEquals(4, rs.getInt(1));
assertEquals(6, rs.getString(2).length());
assertEquals(1, rs.getInt(3));
assertEquals(6, rs.getString(4).length());
assertTrue(rs.next());
assertEquals(2, rs.getInt(1));
assertEquals(5393, rs.getString(2).length());
assertEquals(2, rs.getInt(3));
assertEquals(5393, rs.getString(4).length());
assertFalse(rs.next());
rs.close();
// Start testing long var binary
rollback();
ps = prepareStatement("insert into t1 values(?, ?, ?,?)");
level1 = insertLongBinary(ps, 8);
ps.close();
// non materialized insert: got reader stack level");
ps = prepareStatement("insert into t2 values(?, ?, ?,?)");
level2 = insertLongBinary(ps, 8);
ps.close();
// materialized insert (for trigger): got reader stack level");
assertTrue("FAILED, check stack level change.",
level1 > level2 + 5);
ps = prepareStatement("insert into t3 values(?, ?, ?,?)");
level3 = insertLongBinary(ps, 8);
ps.close();
// self ref foreign key insert(should not materialize):
// got reader stack level");
assertEquals("FAILED!! should not materialize stream in this case.",
level3, level1);
s.close();
rollback();
}
private int insertLongString(PreparedStatement ps, int kchars,
boolean isInsert) throws SQLException {
// don't end on a clean boundary
int chars = (kchars * 1024) + 273;
DummyReader dr = new DummyReader(chars);
if (isInsert) {
ps.setInt(1, pkCount);
ps.setInt(2, pkCount++);
ps.setCharacterStream(3, dr, chars);
ps.setNull(4, Types.VARBINARY);
} else {
ps.setInt(1, 2);
ps.setCharacterStream(2, dr, chars);
}
ps.executeUpdate();
return dr.readerStackLevel;
}
private int insertLongBinary(PreparedStatement ps, int kbytes)
throws SQLException {
// add a small number of bytes to ensure that we are not always ending
// on a clean Mb boundary
int bytes = (kbytes * 1024) + 273;
ps.setInt(1, pkCount);
ps.setInt(2, pkCount++);
ps.setNull(3, Types.LONGVARCHAR);
DummyBinary db = new DummyBinary(bytes);
ps.setBinaryStream(4, db, bytes);
ps.executeUpdate();
return db.readerStackLevel;
}
}
class DummyReader extends java.io.Reader {
private int count;
public int readerStackLevel;
DummyReader(int length) {
this.count = length;
}
private void whereAmI() {
StackTraceElement[] stelements = new Throwable().getStackTrace();
if (count == 0) {
// see DERBY-2318 - some jvms report a line like:
// at java.lang.Throwable<init>. Ignore all Throwable lines
// for the count.
if (stelements.toString().indexOf(
"java.lang.Throwable".toLowerCase()) >=0)
{
readerStackLevel =
stelements.length - 1;
}
else
readerStackLevel = stelements.length;
}
}
public int read() throws IOException {
if (count == 0)
return -1;
count--;
whereAmI();
return 'b';
}
public int read(char[] buf, int offset, int length) {
if (count == 0)
return -1;
if (length > count)
length = count;
count -= length;
whereAmI();
java.util.Arrays.fill(buf, offset, offset + length, 'b');
return length;
}
public void close() {
}
}
class DummyBinary extends java.io.InputStream {
public int readerStackLevel;
int count;
byte content = 42;
DummyBinary(int length) {
this.count = length;
}
private void whereAmI() {
if (count == 0) {
// see DERBY-2318 - some jvms report a line like:
// at java.lang.Throwable<init>. Ignore all Throwable lines
// for the count.
if ((new Throwable().getStackTrace().toString()).indexOf(
"java.lang.Throwable".toLowerCase()) >=0)
{
readerStackLevel =
new Throwable().getStackTrace().length - 1;
}
else
readerStackLevel = new Throwable().getStackTrace().length;
}
}
public int read() {
if (count == 0)
return -1;
count--;
whereAmI();
return content++;
}
public int read(byte[] buf, int offset, int length) {
if (count == 0)
return -1;
if (length > count)
length = count;
count -= length;
whereAmI();
for (int i = 0; i < length; i++)
buf[offset + i] = content++;
return length;
}
public void close() {
}
}
|