Merge branch 'dev' into pr@dev_st_fix
This commit is contained in:
commit
1e7d6a27d2
@ -79,14 +79,13 @@ DataEase 是开源的数据可视化分析工具,帮助用户快速分析数
|
||||
2. 以 root 用户执行如下命令一键安装 DataEase。
|
||||
|
||||
```sh
|
||||
curl -sSL https://dataease.oss-cn-hangzhou.aliyuncs.com/quick_start.sh | sh
|
||||
curl -sSL https://dataease.oss-cn-hangzhou.aliyuncs.com/quick_start.sh | bash
|
||||
```
|
||||
|
||||
**学习资料**
|
||||
|
||||
- [在线文档](https://dataease.io/docs/)
|
||||
- [教学视频](https://dataease.io/video.html)
|
||||
- [在线学习班](https://edu.fit2cloud.com/page/2635362?navIndex=0)
|
||||
- [社区论坛](https://bbs.fit2cloud.com/c/de/6)
|
||||
|
||||
**加入微信交流群**
|
||||
|
||||
|
||||
@ -72,6 +72,7 @@ public class MysqlQueryProvider extends QueryProvider {
|
||||
case "MEDIUMINT":
|
||||
case "INTEGER":
|
||||
case "BIGINT":
|
||||
case "BIGINT UNSIGNED":
|
||||
case "LONG": //增加了LONG类型
|
||||
return 2;// 整型
|
||||
case "FLOAT":
|
||||
|
||||
4
backend/src/main/resources/db/migration/V54__1.18.7.sql
Normal file
4
backend/src/main/resources/db/migration/V54__1.18.7.sql
Normal file
@ -0,0 +1,4 @@
|
||||
UPDATE `my_plugin`
|
||||
SET `version` = '1.18.7'
|
||||
where `plugin_id` > 0
|
||||
and `version` = '1.18.6';
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dataease",
|
||||
"version": "1.18.6",
|
||||
"version": "1.18.7",
|
||||
"description": "dataease front",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dataease-mobile",
|
||||
"version": "1.18.6",
|
||||
"version": "1.18.7",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "npm run dev:h5",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user