Skip to content

Commit f6e59e1

Browse files
authored
feat: Add decimal data type and functions (#52)
* feat: Add decimal data type and functions * refactor: Remove avg_decimal function from the list of exported functions
1 parent 72b1a32 commit f6e59e1

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/dataTypes.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export default [
44
"byte",
55
"char",
66
"date",
7+
"decimal",
78
"double",
89
"float",
910
"geohash",

src/functions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ export default [
196196
"rnd_byte",
197197
"rnd_char",
198198
"rnd_date",
199+
"rnd_decimal",
199200
"rnd_double",
200201
"rnd_double_array",
201202
"rnd_float",

0 commit comments

Comments
 (0)