-
Bug
-
Resolution: Not a Bug
-
Major
-
None
-
None
-
None
-
False
-
-
False
In order to make your issue reports as actionable as possible, please provide the following information, depending on the issue type.
Bug report
env: debezium 3.2.0 beta2 + kafka_2.13-3.9.0
source : mysql 5.7.43-log
target : oracle 19c
mysql :
create table products (
id int auto_increment primary key,
number bigint(20),
date datetime
);
insert into products values (1,10,now());
insert into products values (2,20,now());
oracle-sink configuration:
{... "quote.identifiers": "true", "transforms": "topic-uppercase,fields-uppercase", "transforms.topic-uppercase.type": "io.debezium.connector.jdbc.transforms.CollectionNameTransformation", "transforms.topic-uppercase.collection.naming.style": "upper_case", "transforms.fields-uppercase.type": "io.debezium.connector.jdbc.transforms.FieldNameTransformation", "transforms.fields-uppercase.column.naming.style": "upper_case", ...}The target table created automatically in Oracle still has lowercase table name "products".
Field name successfully converted to uppercase.
SQL> desc OMS."products"
Name Type Nullable Default
------ ------------ -------- -------
ID NUMBER(10)
NUMBER NUMBER(19) Y
DATE TIMESTAMP(6) Y
No errors found in the logs.
I want to transform both table and field names to uppercase.
What Debezium connector do you use and what version?
debezium-connector-mysql-3.2.0.Beta2
debezium-connector-jdbc-3.2.0.Beta2
What is the connector configuration?
{
"name": "mysql-connector",
"config":
}
What is the captured database version and mode of deployment?
(E.g. on-premises, with a specific cloud provider, etc.)
<Your answer>
What behavior do you expect?
Transforming table and fields names to uppercase ,
What behavior do you see?
Transforming table names to uppercase does not work, Additional information can be found in DBZ-9017
Do you see the same behaviour using the latest released Debezium version?
Yes.
Do you have the connector logs, ideally from start till finish?
Yes
How to reproduce the issue using our tutorial deployment?
<Your answer>
Feature request or enhancement
For feature requests or enhancements, provide this information, please:
Which use case/requirement will be addressed by the proposed feature?
<Your answer>
Implementation ideas (optional)
<Your answer>