add complex expressions

This commit is contained in:
Yuri Kuznetsov
2023-05-26 11:44:09 +03:00
parent 7f29a66ad3
commit 29388a8a8d
@@ -236,6 +236,31 @@
"name": "ROUND",
"insertText": "ROUND:(VALUE, PRECISION)",
"returnType": "float"
},
{
"name": "COUNT",
"insertText": "COUNT:(EXPR)",
"returnType": "int"
},
{
"name": "SUM",
"insertText": "SUM:(EXPR)",
"returnType": "int|float"
},
{
"name": "AVG",
"insertText": "AVG:(EXPR)",
"returnType": "float"
},
{
"name": "MAX",
"insertText": "MAX:(EXPR)",
"returnType": "int|float"
},
{
"name": "MIN",
"insertText": "MIN:(EXPR)",
"returnType": "int|float"
}
]
}