Skip to content

Commit

Permalink
fix: fix dburl (#3073)
Browse files Browse the repository at this point in the history
Signed-off-by: Song Gao <[email protected]>
  • Loading branch information
Yisaer authored Aug 1, 2024
1 parent 9a9a24b commit fdf78c2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion extensions/sinks/sql/sql.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],
"properties": [
{
"name": "url",
"name": "dburl",
"default": "",
"optional": false,
"control": "text",
Expand Down
2 changes: 1 addition & 1 deletion extensions/sources/sql/sql.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"properties": {
"default": [
{
"name": "url",
"name": "dburl",
"default": "",
"optional": false,
"control": "text",
Expand Down
12 changes: 6 additions & 6 deletions extensions/sources/sql/sql.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
default:
url: mysql://username:[email protected]:3306/testdb?parseTime=true
dburl: mysql://username:[email protected]:3306/testdb?parseTime=true

mysql_config:
url: mysql://username:[email protected]:3306/testdb?parseTime=true
dburl: mysql://username:[email protected]:3306/testdb?parseTime=true

postgresql_config:
url: postgres://username:[email protected]:5432/testdb
dburl: postgres://username:[email protected]:5432/testdb

sqlite_config:
url: sqlite:/tmp/test.db
dburl: sqlite:/tmp/test.db

sqlserver_config:
url: sqlserver://username:[email protected]:1433/testdb
dburl: sqlserver://username:[email protected]:1433/testdb

oracle_config:
url: oracle://username:[email protected]:1521/testdb
dburl: oracle://username:[email protected]:1521/testdb

0 comments on commit fdf78c2

Please sign in to comment.