You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@trafodion.apache.org by "Suresh Subbiah (JIRA)" <ji...@apache.org> on 2015/12/10 19:55:11 UTC

[jira] [Created] (TRAFODION-1702) purgedata fails on table with delimited name

Suresh Subbiah created TRAFODION-1702:
-----------------------------------------

             Summary: purgedata fails on table with delimited name
                 Key: TRAFODION-1702
                 URL: https://issues.apache.org/jira/browse/TRAFODION-1702
             Project: Apache Trafodion
          Issue Type: Bug
          Components: sql-general
    Affects Versions: 2.0-incubating
            Reporter: Suresh Subbiah
            Assignee: Suresh Subbiah
            Priority: Minor


>>create table "pg_bug" (a int) ;

--- SQL operation complete.
>>purgedata "pg_bug" ;

*** ERROR[4082] Object TRAFODION.SCH.PG_BUG does not exist or is inaccessible.

--- SQL operation failed with errors.
>>get tables ;

Tables in Schema TRAFODION.SCH
===============================

pg_bug

--- SQL operation complete.

Delimited columns names work fine.
>>create table pg_bug1 ("happy" int ) ;

--- SQL operation complete.
>>purgedata pg_bug1 ;

--- SQL operation complete.
>>showddl pg_bug1 ;

CREATE TABLE TRAFODION.SCH.PG_BUG1
  (
    "happy"                          INT DEFAULT NULL SERIALIZED
  )
;




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