s3 select: Infer types for comparison (#9438)

This commit is contained in:
Klaus Post
2020-04-24 22:02:59 +02:00
committed by GitHub
parent 20766069a8
commit e4900b99d7
2 changed files with 13 additions and 1 deletions

View File

@@ -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`,