You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Hyunsik Choi (JIRA)" <ji...@apache.org> on 2015/07/30 15:01:04 UTC

[jira] [Updated] (TAJO-1729) No handling of default case in DDLExecutor

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

Hyunsik Choi updated TAJO-1729:
-------------------------------
    Description: 
As you can see, there is no handling code of default case in alterTable in DDLExecutor.java. It potentially may cause a bug because additional cases will be ignored.

{code:title=alterTable() in DDLExecutor.java}
break;
    default:
      //TODO
{code}

  was:
As you can see, there is no handling code of default case in alterTable in DDLExecutor.java. It potentially may cause a bug because additional cases will be ignored.

{code:title=alterTable in DDLExecutor.java}
break;
    default:
      //TODO
{code}


> No handling of default case in DDLExecutor
> ------------------------------------------
>
>                 Key: TAJO-1729
>                 URL: https://issues.apache.org/jira/browse/TAJO-1729
>             Project: Tajo
>          Issue Type: Improvement
>            Reporter: Hyunsik Choi
>            Priority: Trivial
>              Labels: newbie
>
> As you can see, there is no handling code of default case in alterTable in DDLExecutor.java. It potentially may cause a bug because additional cases will be ignored.
> {code:title=alterTable() in DDLExecutor.java}
> break;
>     default:
>       //TODO
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)