-
Notifications
You must be signed in to change notification settings - Fork 25.8k
SQL:Field name with "." returns null #37128
Copy link
Copy link
Closed
Labels
Description
To reproduce:
PUT /test/blah/1
{
"name": "Shane",
"full.name": "Shane Connelly"
}
PUT /test/blah/2
{
"name": "Shane",
"full": {
"name": "Shane Connelly"
}
}
POST /_xpack/sql?format=txt
{
"query": "DESCRIBE test"
}
POST /_xpack/sql?format=txt
{
"query": "select * from test"
}
this is the result. As you can see, full.name for the first row is null.
full.name | name
---------------+---------------
null |Shane
Shane Connelly |Shane
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Type
Fields
Give feedbackNo fields configured for issues without a type.