Skip to content

Commit

Permalink
[typo](docs) fix jdbc catalog doc example err (#21152)
Browse files Browse the repository at this point in the history
  • Loading branch information
zy-kkk authored and xiaokang committed Jul 3, 2023
1 parent 4296058 commit 905bbc6
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/en/docs/lakehouse/multi-catalog/jdbc.md
Original file line number Diff line number Diff line change
@@ -490,7 +490,7 @@ CREATE CATALOG jdbc_presto PROPERTIES (
"password"="",
"jdbc_url" = "jdbc:presto://localhost:9000/hive",
"driver_url" = "presto-jdbc-0.280.jar",
"driver_class" = "o.prestosql.jdbc.PrestoDriver"
"driver_class" = "io.prestosql.jdbc.PrestoDriver"
);
```

2 changes: 1 addition & 1 deletion docs/zh-CN/docs/lakehouse/multi-catalog/jdbc.md
Original file line number Diff line number Diff line change
@@ -491,7 +491,7 @@ CREATE CATALOG jdbc_presto PROPERTIES (
"password"="",
"jdbc_url" = "jdbc:presto://localhost:9000/hive",
"driver_url" = "presto-jdbc-0.280.jar",
"driver_class" = "o.prestosql.jdbc.PrestoDriver"
"driver_class" = "io.prestosql.jdbc.PrestoDriver"
);
```

0 comments on commit 905bbc6

Please sign in to comment.