generated from amazon-archives/__template_Custom
-
Notifications
You must be signed in to change notification settings - Fork 188
Closed
Labels
PPLPiped processing languagePiped processing languageSQLbugSomething isn't workingSomething isn't working
Description
What is the bug?
In OS, the numeric/boolean fields can be indexed in text format, and the string field can be indexed in numeric format, but the sql plugin cannot parse these value correctly.
How can one reproduce the bug?
PUT test
{
"mappings": {
"properties": {
"field1": {
"type": "long"
},
"field2": {
"type": "boolean"
}
}
}
}
POST test/_bulk?refresh=true
{"index": {}}
{"field1": ["1", 1], "field2": ["true", true]}
{"index": {}}
{"field1": "1", "field2": "true"}
POST _plugins/_sql
{
"query": "select field1, field2 from test"
}
#response
{
"schema": [
{
"name": "field1",
"type": "long"
},
{
"name": "field2",
"type": "boolean"
}
],
"datarows": [
[
"1",
"true"
],
[
0,
false
]
],
"total": 2,
"size": 2,
"status": 200
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
PPLPiped processing languagePiped processing languageSQLbugSomething isn't workingSomething isn't working
Type
Projects
Status
Done