You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Rick Hillegas (JIRA)" <ji...@apache.org> on 2010/07/13 21:11:49 UTC

[jira] Closed: (DERBY-4215) Extra permissions tuple if you hard-upgrade from 10.0 without doing an intermediate hard-upgrade to 10.1

     [ https://issues.apache.org/jira/browse/DERBY-4215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rick Hillegas closed DERBY-4215.
--------------------------------


> Extra permissions tuple if you hard-upgrade from 10.0 without doing an intermediate hard-upgrade to 10.1
> --------------------------------------------------------------------------------------------------------
>
>                 Key: DERBY-4215
>                 URL: https://issues.apache.org/jira/browse/DERBY-4215
>             Project: Derby
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 10.2.1.6, 10.2.2.0, 10.3.1.4, 10.3.2.1, 10.3.3.0, 10.4.1.3, 10.4.2.0, 10.5.1.1, 10.5.2.0
>            Reporter: Rick Hillegas
>            Assignee: Rick Hillegas
>         Attachments: derby-4215-01-aa-deleteTuple.diff
>
>
> If you hard-upgrade a 10.0 database to 10.2 or later (without an intermediate hard-upgrade to 10.1), you will see an extra permissions tuple in SYSROUTINEPERMS.
> Running the following query
>   select p.grantee, p.grantor, a.alias, p.grantoption from sys.sysroutineperms p, sys.sysaliases a where a.aliasid = p.aliasid
> returns the following results when run against a 10.0 database which was hard-upgraded to 10.3.3.0:
> PUBLIC | null | SYSCS_INPLACE_COMPRESS_TABLE | N
> PUBLIC | APP | SYSCS_SET_RUNTIMESTATISTICS | N
> PUBLIC | APP | SYSCS_SET_STATISTICS_TIMING | N
> PUBLIC | APP | SYSCS_INPLACE_COMPRESS_TABLE | N
> PUBLIC | APP | SYSCS_COMPRESS_TABLE | N
> PUBLIC | APP | SYSCS_GET_RUNTIMESTATISTICS | N
> versus the following results when the same query is run against a freshly created 10.3 database:
> PUBLIC | APP | SYSCS_COMPRESS_TABLE | N
> PUBLIC | APP | SYSCS_SET_RUNTIMESTATISTICS | N
> PUBLIC | APP | SYSCS_SET_STATISTICS_TIMING | N
> PUBLIC | APP | SYSCS_GET_RUNTIMESTATISTICS | N
> PUBLIC | APP | SYSCS_INPLACE_COMPRESS_TABLE | N

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.