[
https://issues.apache.org/jira/browse/TAJO-1411?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14366863#comment-14366863
]
Dongjoon Hyun commented on TAJO-1411:
-------------------------------------
I see what you mean and concern now. Sorry for confusing issue description. I'm
not intending to modify QUOTED identifier.
Let me explain more. My thought is just making IDENTIFIER into
LOWER(IDENTIFIER). This is the way of PostgreSQL.
In short, every database/table identifier without quote should be handled as
LOWERCASE one. And, in that context, '\d table1' equals '\d Table1' and '\d
TABLE1'.
Isn't it? [~hyunsik].
Best regards,
Dongjoon.
> Support case-insensitive table description command
> --------------------------------------------------
>
> Key: TAJO-1411
> URL: https://issues.apache.org/jira/browse/TAJO-1411
> Project: Tajo
> Issue Type: Bug
> Components: cli
> Affects Versions: 0.10.1
> Environment: Tajo 0.11.0-SNAPSHOT (rev. 82d44af source checksum
> 8f4cffc)
> Reporter: Dongjoon Hyun
> Assignee: Dongjoon Hyun
> Fix For: 0.10.1
>
>
> In `tsql`, 'describe table' command is case-sensitive inconsistently with
> other features.
> {code:sql}
> default> create table Customer(id int);
> OK
> default> select * from Customer;
> id
> -------------------------------
> (0 rows, 0.187 sec, 0 B selected)
> default> \d Customer;
> ERROR: no such a table: Customer
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)