Hello Team, when I set alias in a query, it fails : select c.CustomerID from customer c limit 10 .
The error is :
[
{
"errorCode": 190,
"message": "TableDoesNotExistError"
}
]
While one without alias succeeds: select CustomerID from customer limit 10
Can someone please help understand what is wrong in the query with alias?
k
Kulbir Nijjer
07/07/2021, 3:14 PM
AFAIK Pinot only supports column alias, table alias is not supported. Tagging @Mayank to confirm.