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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.lang.ColumnDefaultsTest
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.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import junit.framework.Test;
import org.apache.derbyTesting.functionTests.util.Formatters;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.JDBC;
import org.apache.derbyTesting.junit.TestConfiguration;
public final class ColumnDefaultsTest extends BaseJDBCTestCase {
/**
* Public constructor required for running test as standalone JUnit.
*/
public ColumnDefaultsTest(String name)
{
super(name);
}
public static Test suite()
{
BaseTestSuite suite = new BaseTestSuite("ColumnDefaultsTest Test");
suite.addTest(TestConfiguration.defaultSuite(ColumnDefaultsTest.class));
return suite;
}
public void testNegativeTestsForColumnDefaults() throws Exception
{
Statement st = createStatement();
//? in default
assertStatementError("42X01", st,
"create table neg(c1 int default ?)");
// column reference in default
assertStatementError("42X01", st,
"create table neg(c1 int, c2 int default c1)");
// subquery in default
assertStatementError("42X01", st,
"create table neg(c1 int default (values 1))");
// type incompatibility at compile time
assertStatementError("42821", st,
"create table neg(c1 date default 1)");
// type incompatibility at execution time bug 5585 -
// should fail at create table statement because the
// default value '1' is not valid
st.executeUpdate(
"create table neg(c1 int, c2 date default '1')");
assertStatementError("22007", st, " insert into neg (c1) values 1");
st.executeUpdate( " drop table neg");
// bug 5203 - built-in functions are not be allowed in a
// constantExpression because DB2 UDB returns SQLSTATE 42894
st.executeUpdate(
"CREATE FUNCTION ASDF (DATA DOUBLE) RETURNS DOUBLE "
+ "EXTERNAL NAME 'java.lang.Math.sin' LANGUAGE JAVA "
+ "PARAMETER STYLE JAVA");
//DEFAULT value or IDENTITY attribute value is not valid
assertStatementError("42894", st,
" create table neg(c1 int default asdf(0))");
//drop a table which does not exists fails
assertStatementError("42Y55", st, " drop table neg");
// DEFAULT only valid in VALUES within an insert
assertStatementError("42Y85", st, "values default");
assertStatementError("42Y85", st, " values 1, default");
// alter table modify default
st.executeUpdate( "create table neg(c1 date)");
assertStatementError("42X01", st,
" alter table neg modify x default null");
assertStatementError("42821", st,
" alter table neg add column x date default 1");
// bug 5585 - should fail at alter table statement because
// the default value '1' is not valid
st.executeUpdate( "alter table neg add column x date default '1'");
assertStatementError("22007", st,
" insert into neg (c1) values default");
st.executeUpdate( " drop table neg");
// too many values in values clause
st.executeUpdate( "create table neg(c1 int default 10)");
assertStatementError("42X06", st,
" insert into neg values (1, default)");
assertStatementError("42802", st,
" insert into neg values (default, 1)");
// DERBY-4426
assertStatementError("42Y85", st,
" insert into neg values (default) union values (default)");
assertStatementError("42Y85", st,
" insert into neg values (default) except values (default)");
// Make sure sub-queries are inspected for illegal DEFAULT also.
assertStatementError("42Y85", st,
" insert into neg select * from (values default) t");
st.executeUpdate( " drop table neg");
st.executeUpdate( "drop function asdf");
rollback();
st.close();
}
public void testPositiveTestsForColumnDefaults()
throws SQLException
{
// positive
Statement st = createStatement();
//create tables
st.executeUpdate(
"create table t1(c1 int, c2 int with default 5, c3 "
+ "date default current_date, c4 int)");
// verify that defaults work
st.executeUpdate( "insert into t1 (c1) values 1");
st.executeUpdate( " insert into t1 (c4) values 4");
ResultSet rs = st.executeQuery("select c1, c2, c4 from t1");
String[] expColNames = {"C1", "C2", "C4"};
JDBC.assertColumnNames(rs, expColNames);
String[][] expRS = {
{"1", "5", null},
{null, "5", "4"}
};
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(
" select c1, c2, c4 from t1 where c3 = current_date");
expColNames = new String [] {"C1", "C2", "C4"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"1", "5", null},
{null, "5", "4"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// update default for column whose default is null
assertUpdateCount(st, 2, "update t1 set c1 = default");
rs = st.executeQuery(
" select c1, c2, c4 from t1 where c3 = current_date");
expColNames = new String [] {"C1", "C2", "C4"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{null, "5", null},
{null, "5", "4"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// default for column that has explicit default
assertUpdateCount(st, 2, "update t1 set c2 = 7");
rs = st.executeQuery( " select c2 from t1");
expColNames = new String [] {"C2"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"7"},
{"7"}
};
JDBC.assertFullResultSet(rs, expRS, true);
assertUpdateCount(st, 2, " update t1 set c2 = default");
rs = st.executeQuery( " select c2 from t1");
expColNames = new String [] {"C2"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"5"},
{"5"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// insert default
assertUpdateCount(st, 2, "delete from t1");
st.executeUpdate(
" insert into t1 values (5, default, '1999-09-09', default)");
st.executeUpdate(
" insert into t1 values (default, 6, default, 5)");
st.executeUpdate(
" insert into t1 values (default, 6, default, 5), "
+ "(7, default, '1997-07-07', 3)");
rs = st.executeQuery(
" select c1, c2, c4 from t1 where c3 = current_date");
expColNames = new String [] {"C1", "C2", "C4"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{null, "6", "5"},
{null, "6", "5"}
};
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(
" select c1, c2, c4 from t1 where c3 <> current_date");
expColNames = new String [] {"C1", "C2", "C4"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"5", "5", null},
{"7", "5", "3"}
};
JDBC.assertFullResultSet(rs, expRS, true);
assertUpdateCount(st, 4, " delete from t1");
st.executeUpdate(
" insert into t1 (c1, c3, c4) values (5, "
+ "'1999-09-09', default)");
st.executeUpdate(
" insert into t1 (c1, c3, c4) values (default, default, 5)");
st.executeUpdate(
" insert into t1 (c1, c3, c4) values (default, "
+ "default, default)");
st.executeUpdate(
" insert into t1 (c1, c3, c4) values (default, "
+ "default, 5), (7, '1997-07-07', 3)");
rs = st.executeQuery(
" select c1, c2, c4 from t1 where c3 = current_date");
expColNames = new String [] {"C1", "C2", "C4"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{null, "5", "5"},
{null, "5", null},
{null, "5", "5"}
};
JDBC.assertFullResultSet(rs, expRS, true);
rs = st.executeQuery(
" select c1, c2, c4 from t1 where c3 <> current_date");
expColNames = new String [] {"C1", "C2", "C4"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"5", "5", null},
{"7", "5", "3"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// delimited identifiers this schema
st.executeUpdate( "create table \"x1\" (\"c1\" int)");
st.executeUpdate( " insert into \"x1\" values 1");
st.executeUpdate(
" alter table \"x1\" add column \"c2\" char(1) default 'x'");
rs = st.executeQuery( " select * from \"x1\"");
expColNames = new String [] {"c1", "c2"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"1", "x"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// another schema
st.executeUpdate( "create schema \"otherschema\"");
st.executeUpdate(
" create table \"otherschema\".\"y1\" (\"c11\" int)");
st.executeUpdate(
" insert into \"otherschema\".\"y1\" values 2");
st.executeUpdate(
" alter table \"otherschema\".\"y1\" add column "
+ "\"c22\" char(1) default 'y'");
rs = st.executeQuery(
" select * from \"otherschema\".\"y1\"");
expColNames = new String [] {"c11", "c22"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"2", "y"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// bug 3433
st.executeUpdate( "create table t7(c1 int default 10)");
st.executeUpdate( " insert into t7 values (default)");
rs = st.executeQuery( " select * from t7");
expColNames = new String [] {"C1"};
JDBC.assertColumnNames(rs, expColNames);
expRS = new String [][]
{
{"10"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// DERBY-4426: make sure we don't forbid inside a multi-value table
// constructor since this is represented as a UnionNode
st.executeUpdate( "delete from t7");
st.executeUpdate( "insert into t7 values 1, default");
rs = st.executeQuery( " select * from t7");
expRS = new String [][]
{
{"1"},
{"10"}
};
JDBC.assertFullResultSet(rs, expRS, true);
st.executeUpdate( " drop table t1");
st.executeUpdate( " drop table t7");
st.executeUpdate( " drop table \"x1\"");
st.executeUpdate( " drop table \"otherschema\".\"y1\"");
st.executeUpdate( " drop schema \"otherschema\" restrict");
rollback();
st.close();
}
public void testJira331()
throws SQLException
{
// JIRA issue Derby-331
Statement st = createStatement();
st.executeUpdate(
"create table t_331 (a int not null, b int default "
+ "0, unique (a))");
st.executeUpdate( " insert into t_331 values (4, default)");
assertStatementError("23505", st,
" insert into t_331 values (4, default)");
ResultSet rs = st.executeQuery( " select * from t_331");
String[] expColNames = {"A", "B"};
JDBC.assertColumnNames(rs, expColNames);
String[][] expRS = {
{"4", "0"}
};
JDBC.assertFullResultSet(rs, expRS, true);
st.executeUpdate( " drop table t_331");
rollback();
st.close();
}
public void testJira3013()
throws SQLException
{
// begin DERBY-3013
Statement st = createStatement();
st.executeUpdate(
"create table tabWithUserAndSchemaDefaults("
+ " cUser CHAR(8) default user,"
+ " cCurrent_user CHAR(8) default current_user,"
+ " cSession_user CHAR(8) default session_user,"
+ " cCurrent_schema CHAR(128) default "
+ "current schema)");
// Should work
st.executeUpdate(
"insert into tabWithUserAndSchemaDefaults values "
+ "(default, default, default, default)");
ResultSet rs = st.executeQuery(
" select * from tabWithUserAndSchemaDefaults");
String[] expColNames = {"CUSER", "CCURRENT_USER",
"CSESSION_USER", "CCURRENT_SCHEMA"};
JDBC.assertColumnNames(rs, expColNames);
String[][] expRS = {
{"APP", "APP", "APP", "APP"}
};
JDBC.assertFullResultSet(rs, expRS, true);
// Should fail:DEFAULT value or IDENTITY attribute value is not valid
assertStatementError("42894", st,
"create table tabWithUserDefaultTooNarrowColumn("
+ " c1 CHAR(7) default user)");
// Should fail:DEFAULT value or IDENTITY attribute value is not valid
assertStatementError("42894", st,
"create table tabWithSchemaDefaultTooNarrowColumn("
+ " c1 CHAR(127) default current sqlid)");
st.executeUpdate(
" drop table tabWithUserAndSchemaDefaults");
rollback();
st.close();
}
public void testDerby118_and_5829 () throws SQLException {
Statement st = createStatement();
/*
* Lift restriction that even VARCHAR can max have 254 chars in
* DEFAULT, another DB2ism.
*/
String sb = Formatters.repeatChar("-", 400);
st.executeUpdate(
"create table tabLongVarchar("
+ " c varchar(400) default " + "'" + sb + "')");
st.executeUpdate(
"insert into tabLongVarchar" +
" values default");
ResultSet rs = st.executeQuery("select c from tabLongVarchar");
JDBC.assertSingleValueResultSet(rs, sb);
// Negative test: Make sure we still flag too long string for CHAR
// (length > 254). Note that the check will now only happen at insert
// time, as other truncation checks do.
st.executeUpdate(
"create table tabLongChar("
+ " c char(254) default " + "'" + sb + "')");
try {
st.executeUpdate(
"insert into tabLongChar values default");
fail();
} catch (SQLException e) {
assertSQLState("22001", e); // truncate
}
// Interestingly, a float literal for SMALLINT is not disabled for
// assignment to integer types. This is asymmetric, as it is forbidden
// for the other integer types, as per the standard, btw.
// Remove this test if we forbid this, or add tests for the other
// integer types if we decide to allow it, cf discussions on
// DERBY-118. For now, we just document this weirdness in this test.
st.executeUpdate(
"create table tabSmallIntFloat(si smallint default 3.14)");
st.executeUpdate(
"insert into tabSmallIntFloat values default");
rs = st.executeQuery("select si from tabSmallIntFloat");
JDBC.assertSingleValueResultSet(rs, "3");
// Compare with INT, which fails:
try {
st.executeUpdate(
"create table tabIntFloat(i int default 3.14)");
fail();
} catch (SQLException e) {
assertSQLState("42894", e);
}
}
}
|