1
0
mirror of https://github.com/minio/minio.git synced 2025-02-03 09:55:59 -05:00
Aditya Manthramurthy 41a9d1d778 Fix S3Select SQL column reference handling ()
This change fixes handling of these types of queries:

- Double quoted column names with special characters:
    SELECT "column.name" FROM s3object
- Double quoted column names with reserved keywords:
    SELECT "CAST" FROM s3object
- Table name as prefix for column names:
    SELECT S3Object."CAST" FROM s3object
2021-04-06 12:40:28 -07:00
..