Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update sql.json file #2704

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extensions/sinks/sql/sql.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"control": "text",
"type": "string",
"hint": {
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F",
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F"
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters, and you need to re-enter the password when editing. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F",
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符,并且编辑时需要重新输入密码。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F"
},
"label": {
"en_US": "server address",
Expand Down
8 changes: 4 additions & 4 deletions extensions/sources/sql/sql.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"control": "text",
"type": "string",
"hint": {
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F",
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F"
"en_US": "The url of the database, it is important to note that the password in the URL is url-encoded characters, and you need to re-enter the password when editing. For example, the database address of mysql is mysql://username:[email protected]:3306/testdb?parseTime=true, if the original password is 123:#?, the password here should be filled in with 123%3A%23%3F",
"zh_CN": "数据库服务器的 URL,需要特别注意的是 URL 中的密码为 url 编码后的字符,并且编辑时需要重新输入密码。例如,mysql 的数据库地址为 mysql://username:[email protected]:3306/testdb?parseTime=true,若原始密码为 123:#?,则这里的 password 应填入 123%3A%23%3F"
},
"label": {
"en_US": "Server address",
Expand Down Expand Up @@ -186,11 +186,11 @@
},
"indexFieldType": {
"name": "indexFieldType",
"default": "STRING",
"default": "",
"optional": true,
"control": "select",
"type": "string",
"values": ["DATETIME", "INT", "FLOAT", "STRING"],
"values": ["DATETIME", "INT"],
"hint": {
"en_US": "Column type for the indexField",
"zh_CN": "索引字段的列类型"
Expand Down
Loading