druid when sql contains ” and ‘,parse sql result is not

gc0ot86w  于 3个月前  发布在  Druid
关注(0)|答案(1)|浏览(41)

No description provided.

bcs8qyzn

bcs8qyzn1#

1 sample ”
SELECT *
FROM table1
WHERE date = "20191010"
LIMIT 10
sample “ result
table1.*
table1.date
table1.20191010

2 sample ’
SELECT *
FROM table1
WHERE date = '20191010'
LIMIT 10
result
table1.*
table1.date

obvious second sample‘s result is right

相关问题