Open kgyrtkirk opened 3 weeks ago
People using the native engine may write CAST( some AS LONG ) because they used to work with those types - however the sql parser doesn't know that type and returns an error.
CAST( some AS LONG )
It could be handled as an alias to BIGINT
BIGINT
@kgyrtkirk Can i work on this.?
Motivation
People using the native engine may write
CAST( some AS LONG )
because they used to work with those types - however the sql parser doesn't know that type and returns an error.Description
It could be handled as an alias to
BIGINT