不要怂,就是干,撸起袖子干!

You need to sign in or sign up before continuing.
Commit 0437831e by Martin Blumenstingl

Fixed 'type' property of DECIMAL.

This fixed query generation (before the column type was always DECIMAL,
even if DECIMAL(10,3) was specified).
1 parent d58a73a0
Showing with 1 additions and 1 deletions
......@@ -173,7 +173,7 @@ DECIMAL.prototype = {
},
get type() {
return 'DECIMAL'
return this.toString()
},
get PRECISION() {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!