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

[Feature][JDBC] Support database/table wildcards scan read #8869

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from

Conversation

hawk9821
Copy link
Contributor

Purpose of this pull request

this pr support databse : mysql , oracle, postgres, mssql

close #8473

Does this PR introduce any user-facing change?

How was this patch tested?

Check list

Comment on lines +64 to +66
default Logger getLogger() {
return null;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why need this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

print logs matched tables

default List<CatalogTable> getTables(ReadonlyConfig config) throws CatalogException {
    ...
  if (getLogger() != null) {
      if (tablePaths.isEmpty()) {
          getLogger().info("No table matched the pattern: {}", tablePatternStr);
      } else {
          getLogger()
                  .info(
                          "{} tables matched the pattern: {}",
                          tablePaths.size(),
                          tablePatternStr);
      }
  }
  return buildCatalogTablesWithErrorCheck(tablePaths.iterator());
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's werid.

List<TablePath> tablePaths = new ArrayList<>();
for (String databaseName : allDatabase) {
tableNames = this.listTables(databaseName);
boolean isOracle = "Oracle".equals(this.name());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should not do this kind special check in api.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

Comment on lines 36 to 50
public final class JdbcUrlUtil {
private static final Pattern URL_PATTERN =
Pattern.compile(
"^(?<url>jdbc:.+?//(?<host>.+?):(?<port>\\d+?))(/(?<database>.*?))*(?<suffix>\\?.*)*$");

private static final Pattern SQLSERVER_URL_PATTERN =
Pattern.compile(
"^(?<url>jdbc:sqlserver://([a-zA-Z0-9.-]+)(?::(\\d+))?(;(?<param>[^=]+)\\s*=(?<value>[^;]+);?)*)$");

private static final Pattern ORACLE_URL_PATTERN =
Pattern.compile(
"^(?<url>jdbc:oracle:thin:@(//)?(?<host>[^:]+):(?<port>\\d+))(/(?<database>.*?))*(?<suffix>\\?.*)*$");

private static final Pattern HANA_URL_PATTERN =
Pattern.compile("^(?<url>jdbc:sap://(?<host>[^:]+):(?<port>\\d+)/?(?<params>.*?))$");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change JdbcUrlUtil as abstract class? Then each implement class can hold pattern by themself.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

@hawk9821 hawk9821 force-pushed the jdbc_wildcards branch 8 times, most recently from 964752d to 72e8dc4 Compare March 22, 2025 04:00
Hisoka-X and others added 2 commits March 22, 2025 14:40
[Fix][Connector-V2] Fix parse SqlServer JDBC Url error (apache#8784)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature][JDBC] Support database/table wildcards scan read
3 participants