generated from amazon-archives/__template_Custom
-
Notifications
You must be signed in to change notification settings - Fork 179
Open
Labels
bugSomething isn't workingSomething isn't workingpaginationPagination feature, ref #656Pagination feature, ref #656
Description
What is the bug?
Columns added to the table (index) aren't queried.
How can one reproduce the bug?
Steps to reproduce the behavior:
- Create an empty index
PUT http://localhost:9200/pmtest
- Add few docs
POST http://localhost:9200/pmtest/_doc?refresh=true
{
"age": 30
}
POST http://localhost:9200/pmtest/_doc?refresh=true
{
"age": 32
}
- Starting paging
POST http://localhost:9200/_plugins/_sql
{
"query": "SELECT * from pmtest",
"fetch_size": 1
}
- Add a doc with another field
POST http://localhost:9200/pmtest/_doc?refresh=true
{
"name": "pewpew"
}
- Keep paging till the end
What is the expected behavior?
Last doc should be returned as well
What is your host/environment?
feature/pagination/P1 @ 7dd445c
Do you have any additional context?
Project list should be refreshed on every request
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpaginationPagination feature, ref #656Pagination feature, ref #656