Skip to content

Commit

Permalink
update kafka database name
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheun99 committed Jan 3, 2025
1 parent 817c0e6 commit 2ec6316
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private ConsumerMetadata createConsumerMetadata(ReadonlyConfig readonlyConfig) {
private CatalogTable createCatalogTable(ReadonlyConfig readonlyConfig) {
Optional<Map<String, Object>> schemaOptions =
readonlyConfig.getOptional(TableSchemaOptions.SCHEMA);
TablePath tablePath = TablePath.of("kafka", readonlyConfig.get(TOPIC));
TablePath tablePath = TablePath.of(null, readonlyConfig.get(TOPIC));
TableSchema tableSchema;
if (schemaOptions.isPresent()) {
tableSchema = new ReadonlyConfigParser().parse(readonlyConfig);
Expand Down

0 comments on commit 2ec6316

Please sign in to comment.