Details
Description
In `tsql`, 'describe table' command is case-sensitive inconsistently with other features.
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