AntonShuvaev / elasticsearch4idea

Elasticsearch Plugin for JetBrains IDEs
https://plugins.jetbrains.com/plugin/14512-elasticsearch
59 stars 8 forks source link

Table-view is missing columns on one index #51

Closed leberknecht closed 2 years ago

leberknecht commented 2 years ago

Hi, for one of my indices, the table-view for the results doesnt work (on the other indices it works like charm). It shows only the build-in fields but is missing all the fields from _source Here is the view as json-hits: image here is the table-view: image

Is there anything i missed? It shows fine with kaizen, Here are the _settings:

{
  "reputation_dev_searches": {
    "aliases": {},
    "mappings": {
      "properties": {
        "created_at": {
          "type": "date"
        },
        "hit_count": {
          "type": "integer"
        },
        "institution_id": {
          "type": "keyword"
        },
        "search_id": {
          "type": "keyword"
        },
        "updated_at": {
          "type": "date"
        }
      }
    },
    "settings": {
      "index": {
        "creation_date": "1635260269618",
        "number_of_shards": "1",
        "number_of_replicas": "1",
        "uuid": "IovQChmDQYird8jJLgh_WA",
        "version": {
          "created": "7080099"
        },
        "provided_name": "reputation_dev_searches"
      }
    }
  }
}
AntonShuvaev commented 2 years ago

Hi! This is a bug. I will fix it ASAP

AntonShuvaev commented 2 years ago

Fixed

leberknecht commented 2 years ago

Can confirm, works as-expected now. Thank you :)