Skip to content

Commit a85ec54

Browse files
authored
Merge pull request #126 from EdurtIO/develop
[Release] Release 1.13.0
2 parents 8fbdcc7 + 6cf086e commit a85ec54

14 files changed

Lines changed: 210 additions & 11 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Workflow:
3535

3636
[![Test by push](https://github.com/EdurtIO/dbm/actions/workflows/push-compile-test.yml/badge.svg)](https://github.com/EdurtIO/dbm/actions/workflows/push-compile-test.yml)
3737

38-
[![Publish New Release](https://github.com/EdurtIO/dbm/actions/workflows/upload-to-release.yml/badge.svg)](https://github.com/EdurtIO/dbm/actions/workflows/upload-to-release.yml)
38+
[![Publish New Release](https://github.com/EdurtIO/dbm/actions/workflows/publish-release.yml/badge.svg)](https://github.com/EdurtIO/dbm/actions/workflows/upload-to-release.yml)
3939

4040
[![Publish docs via GitHub Pages](https://github.com/EdurtIO/dbm/actions/workflows/publish-docs.yml/badge.svg)](https://github.com/EdurtIO/dbm/actions/workflows/publish-docs.yml)
4141

6.94 KB
Loading
34 KB
Loading
38 KB
Loading
213 KB
Loading
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
template: overrides/main.html
3+
icon: material/gesture-tap-button
4+
---
5+
6+
DBM Version for `1.14.0` is development!
7+
8+
!!! danger "Warning"
9+
10+
The development version will not be released. If you need to experience, please pull the source code for local compilation. We will not release this version until the end of the final development work!!!
11+
12+
#### Enhancement
13+
14+
---
15+
16+
17+
#### UI
18+
19+
---
20+
21+
22+
#### Optimize
23+
24+
----
25+
26+
27+
#### Docs
28+
29+
---
30+
31+
32+
#### Bug
33+
34+
---
35+
36+
37+
#### Contributors (In no particular order)
38+
39+
---
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
template: overrides/main.html
3+
---
4+
5+
The query history function is mainly used to mark some of our query records for each data source.
6+
7+
!!! warning
8+
9+
Currently supports up to `100` query history, we will expand this function to support more data storage in the future!
10+
11+
Move the mouse to the top menu `Query` and wait for the drop-down options to appear, click `History` to enter the query history interface, which is similar to the following page
12+
13+
![Query History](/assets/images/query/query_history.png)
14+
15+
On the top right side of the page we can see the <img src="/assets/images/query/clear_history.png" width="80" > button, which is used to clear all the query history, when clicked, the query history displayed here will be cleared!
16+
17+
#### Field Description
18+
19+
---
20+
21+
|Field| Meaning |
22+
|---|----------------------------------------------------------------------------------|
23+
|ID| The MD5 tag generated by this query is used to mark the uniqueness of this query |
24+
|Server| The remote service tag (i.e. the data source) of the query call |
25+
|State| The current query status, 1: query failed, 0: query successful |
26+
|StartTime| Query the start timestamp |
27+
|EndTime| Query the end timestamp |
28+
|ElapsedTime| The total time spent on this query (in milliseconds) |
29+
30+
!!! warning "Warning"
31+
32+
In the list, we can see that we use special colors to highlight the records that failed to query
33+
34+
:octicons-search-16: The button is used to view the SQL statement of this query
35+
36+
![Query DDL](/assets/images/query/query_ddl.png)
37+
38+
:warning: The button is used to view the error information after this execution fails, it only takes effect after the query fails
39+
40+
![Query Error](/assets/images/query/query_error.png)
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
template: overrides/main.html
3+
---
4+
5+
查询历史功能主要用于标记我们对每个数据源的一些查询记录.
6+
7+
!!! warning
8+
9+
目前最多支持 `100` 条查询历史,后续我们会扩展该功能支持更多的数据存储!
10+
11+
鼠标移向顶部菜单 `Query` 等待下拉选择项出来后, 点击 `History` 即可进入查询历史界面, 它类似于以下页面
12+
13+
![Query History](/assets/images/query/query_history.png)
14+
15+
在页面顶部右侧我们可以看到 <img src="/assets/images/query/clear_history.png" width="80" /> 按钮, 它用于清理所有的查询历史, 当点击后此处展示的查询历史将被全部清空!
16+
17+
#### 字段描述
18+
19+
---
20+
21+
|字段| 含义 |
22+
|---|----------------------------|
23+
|ID| 此次查询生成的MD5标记, 用于标记此次查询的唯一性 |
24+
|Server| 查询调用的远程服务标记(即数据源) |
25+
|State| 本次查询状态, 1: 查询失败, 0: 查询成功 |
26+
|StartTime| 查询开始时间戳 |
27+
|EndTime| 查询结束时间戳 |
28+
|ElapsedTime| 本次查询总耗时时间(单位毫秒) |
29+
30+
!!! warning "注意"
31+
32+
在列表中我们可以看到, 查询失败的记录我们使用特殊颜色进行高亮展示
33+
34+
:octicons-search-16: 按钮用于查看本次查询的SQL语句
35+
36+
![Query DDL](/assets/images/query/query_ddl.png)
37+
38+
:warning: 按钮用于查看本次执行失败后的错误信息, 它只在查询失败后生效
39+
40+
![Query Error](/assets/images/query/query_error.png)
File renamed without changes.

docs/docs/reference/2.Get-Started-Query.zh.md renamed to docs/docs/reference/query/query_query.zh.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ template: overrides/main.html
77
##### 重定向查询
88

99
---
10+
1011
单击 <img src="http://images.edurt.io/2021/09/26/16326372138778.jpg" width="50" /> 顶部菜单栏中的菜单,出现下一个窗口
1112

1213
![](http://images.edurt.io/2021/09/26/16326381423772.jpg)

0 commit comments

Comments
 (0)