-
Notifications
You must be signed in to change notification settings - Fork 25.6k
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