siddhi-io / siddhi-store-rdbms

Extension that can be used to perform DB operations with an RDBMS
https://siddhi-io.github.io/siddhi-store-rdbms/
Apache License 2.0
7 stars 57 forks source link

Add support to read null values as it is #228

Closed AnuGayan closed 3 years ago

AnuGayan commented 3 years ago

Purpose

By default, when reading the null value from the database it gets replaced by 0. This is due to the implementation of ResultSet.get() implementation. If the allow.null.values ="true" provided in @store annotation, this will override and returns null values as it is.

Security checks