diff options
Diffstat (limited to 'sql/json_schema.h')
-rw-r--r-- | sql/json_schema.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/json_schema.h b/sql/json_schema.h index 53b6aaaff9f..fd5f55f5fdc 100644 --- a/sql/json_schema.h +++ b/sql/json_schema.h @@ -228,7 +228,8 @@ class Json_schema_minimum : public Json_schema_keyword class Json_schema_multiple_of : public Json_schema_keyword { private: - double multiple_of; + longlong multiple_of; + public: bool validate(const json_engine_t *je, const uchar *k_start= NULL, const uchar *k_end= NULL) override; |