Add decimalNumbers flag true to mysql beta

This commit is contained in:
Dave Conway-Jones 2021-11-20 21:51:52 +00:00
parent 105fe0d655
commit 82e63c42e8
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
2 changed files with 3 additions and 2 deletions

View File

@ -44,7 +44,8 @@ module.exports = function(RED) {
connectionLimit: 50, connectionLimit: 50,
timeout: 30000, timeout: 30000,
connectTimeout: 30000, connectTimeout: 30000,
charset: node.charset charset: node.charset,
decimalNumbers: true
}); });
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red-node-mysql", "name": "node-red-node-mysql",
"version": "1.0.0-beta-2", "version": "1.0.0-beta-3",
"description": "A Node-RED node to read and write to a MySQL database", "description": "A Node-RED node to read and write to a MySQL database",
"dependencies": { "dependencies": {
"mysql2": "^2.3.3" "mysql2": "^2.3.3"