Skip to content

Commit

Permalink
Merge branch 'v2.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiYe-Jing committed Jul 9, 2020
2 parents a59d8a3 + 5452702 commit 61024e1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,9 @@ public String getSQLQueryTableSchema(String... args) {
public String getSQLQueryTables() {
return null;
}

@Override
public String getSQLQueryTables(String... tableSchema) {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static ClickHouseDataBaseMeta getInstance() {
return single;
}
@Override
public String getSQLQueryTables(String... args) {
public String getSQLQueryTables() {
return "show tables";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static HiveDatabaseMeta getInstance() {
}

@Override
public String getSQLQueryTables(String... args) {
public String getSQLQueryTables() {
return "show tables";
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public String getSQLQueryPrimaryKey() {
}

@Override
public String getSQLQueryTables(String... args) {
public String getSQLQueryTables() {
return "show tables";
}

Expand Down

0 comments on commit 61024e1

Please sign in to comment.