ujjwalguptaofficial / JsStore

Simplifying IndexedDB with SQL like syntax and promises
http://jsstore.net/
MIT License
858 stars 110 forks source link

count function has a serious bug: where conditions are not be use correct. #364

Closed HongliangQiu closed 7 months ago

HongliangQiu commented 7 months ago

count({ from: "Customers", where: { customerId: { ">=": 1, // only this works. "<=": 5 // does not work. } } })

https://ujjwalguptaofficial.github.io/idbstudio/?db=Demo&query=count(%7B%0A%20%20%20%20from%3A%20%22Customers%22%2C%0A%20%20%20%20where%3A%20%7B%0A%20%20%20%20%20%20%20%20customerId%3A%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%22%3E%3D%22%3A%201%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%22%3C%3D%22%3A%205%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%7D)

image

HongliangQiu commented 7 months ago

image

ujjwalguptaofficial commented 7 months ago

Thanks for reporting, let me see and solve.

ujjwalguptaofficial commented 7 months ago

This is fixed in v- 4.7.4.