[
http://issues.apache.org/jira/browse/DERBY-2169?page=comments#action_12458241 ]
Dieter Wimberger commented on DERBY-2169:
-----------------------------------------
All was created and passed in lower case.
However, here is what happens with the schema in uppercase:
call syscs_util.syscs_compress_table('TEST','test',1);
ERROR 38000: The exception 'java.sql.SQLException: 'ALTER TABLE' cannot be
performed on 'TEST.test' because it does not exist.' was thrown while
evaluating an expression.
ERROR 42Y55: 'ALTER TABLE' cannot be performed on 'TEST.test' because it does
not exist.
call syscs_util.syscs_inplace_compress_table('TEST','test',1,1,1);
ERROR 42X05: Table/View 'TEST.test' does not exist.
> Schema does not exist exception for existing schema calling
> syscs_util.syscs_compress_table
> -------------------------------------------------------------------------------------------
>
> Key: DERBY-2169
> URL: http://issues.apache.org/jira/browse/DERBY-2169
> Project: Derby
> Issue Type: Bug
> Affects Versions: 10.2.1.6
> Environment: OS X, java version "1.5.0_06"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-112)
> Java HotSpot(TM) Client VM (build 1.5.0_06-64, mixed mode, sharing)
> Reporter: Dieter Wimberger
>
> syscs_util.syscs_compress_table throws a "schema does not exist" exception
> for an existing schema.
> Call is made according to the documentation in the reference manual:
> SYSCS_UTIL.SYSCS_COMPRESS_TABLE (IN SCHEMANAME VARCHAR(128),
> IN TABLENAME VARCHAR(128), IN SEQUENTIAL SMALLINT)
> Testcase using ij:
> connect 'jdbc:derby:test;create=true';
> create schema test;
> create table test.test(id varchar(255));
> insert into test.test values('test1');
> insert into test.test values('test2');
> call syscs_util.syscs_compress_table('test','test',0);
> ERROR 38000: The exception 'java.sql.SQLException: Schema 'test' does not
> exist' was thrown while evaluating an expression.
> ERROR 42Y07: Schema 'test' does not exist
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira