mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
Add new SQL parser to support S3 Select syntax (#7102)
- New parser written from scratch, allows easier and complete parsing of the full S3 Select SQL syntax. Parser definition is directly provided by the AST defined for the SQL grammar. - Bring support to parse and interpret SQL involving JSON path expressions; evaluation of JSON path expressions will be subsequently added. - Bring automatic type inference and conversion for untyped values (e.g. CSV data).
This commit is contained in:
committed by
Harshavardhana
parent
0a28c28a8c
commit
2786055df4
@@ -3,6 +3,15 @@ Traditional retrieval of objects is always as whole entities, i.e GetObject for
|
||||
|
||||
> This implementation is compatible with AWS S3 Select API
|
||||
|
||||
### Implemention status:
|
||||
|
||||
- Full S3 SQL syntax is supported
|
||||
- All aggregation, conditional, type-conversion and strings SQL functions are supported
|
||||
- JSONPath expressions are not yet evaluated
|
||||
- Large numbers (more than 64-bit) are not yet supported
|
||||
- Date related functions are not yet supported (EXTRACT, DATE_DIFF, etc)
|
||||
- S3's reserved keywords list is not yet respected
|
||||
|
||||
## 1. Prerequisites
|
||||
- Install Minio Server from [here](http://docs.minio.io/docs/minio-quickstart-guide).
|
||||
- Familiarity with AWS S3 API
|
||||
|
||||
Reference in New Issue
Block a user