@Test
public void testShowColumns()
throws Exception
{
MaterializedResult actual = computeActual("SHOW COLUMNS FROM orders");
MaterializedResult expected = resultBuilder(VARIABLE_BINARY, VARIABLE_BINARY, BOOLEAN, BOOLEAN)
.row("orderkey", "bigint", true, false)
.row("custkey", "bigint", true, false)
.row("orderstatus", "varchar", true, false)
.row("totalprice", "double", true, false)
.row("orderdate", "varchar", true, false)