mirror of
https://github.com/minio/minio.git
synced 2025-11-06 20:33:07 -05:00
s3 select: Infer types for comparison (#9438)
This commit is contained in:
@@ -573,6 +573,16 @@ func TestCSVQueries2(t *testing.T) {
|
||||
query: `SELECT num2 from s3object s WHERE id = 2`,
|
||||
wantResult: `{"num2":" 0.765111"}`,
|
||||
},
|
||||
{
|
||||
name: "select-in-array",
|
||||
query: `select id from S3Object s WHERE id in [1,3]`,
|
||||
wantResult: `{"id":"1"}`,
|
||||
},
|
||||
{
|
||||
name: "select-in-array-matchnone",
|
||||
query: `select id from S3Object s WHERE s.id in [4,3]`,
|
||||
wantResult: ``,
|
||||
},
|
||||
{
|
||||
name: "select-float-by-val",
|
||||
query: `SELECT num2 from s3object s WHERE num2 = 0.765111`,
|
||||
|
||||
Reference in New Issue
Block a user