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

Support column properties with jdbc connector #25174

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

hqbhoho
Copy link
Contributor

@hqbhoho hqbhoho commented Feb 27, 2025

Description

Add column properties for base jdbc connector to support auto_increment, default value and other column attribute.
When running SHOW CREATE TABLE include column properties present for these column attribute.

Additional context and related issues

Release notes

( ) This is not user-visible or is docs only, and no release notes are required.
( ) Release notes are required. Please propose a release note for me.
( ) Release notes are required, with the following suggested text:

## Mysql
*  Add support for creating tables with `auto_increment` column property.

@cla-bot cla-bot bot added the cla-signed label Feb 27, 2025
@hqbhoho hqbhoho marked this pull request as draft February 27, 2025 01:36
@github-actions github-actions bot added the mysql MySQL connector label Feb 27, 2025
@hqbhoho hqbhoho changed the title Feature/support column properties with jdbc connector Support column properties with jdbc connector Feb 27, 2025
Copy link

This pull request has gone a while without any activity. Ask for help on #core-dev on Trino slack.

@github-actions github-actions bot added the stale label Mar 20, 2025
@hqbhoho hqbhoho force-pushed the feature/support_column_properties_with_jdbc_connector branch 9 times, most recently from 7309388 to dbc00bb Compare March 26, 2025 14:02
@hqbhoho hqbhoho marked this pull request as ready for review March 26, 2025 15:08
@hqbhoho hqbhoho force-pushed the feature/support_column_properties_with_jdbc_connector branch from dbc00bb to 7630693 Compare March 26, 2025 16:01
@github-actions github-actions bot removed the stale label Mar 26, 2025
@hqbhoho hqbhoho force-pushed the feature/support_column_properties_with_jdbc_connector branch from 7630693 to dbc00bb Compare March 27, 2025 02:57
@hqbhoho
Copy link
Contributor Author

hqbhoho commented Mar 27, 2025

The JdbcColumnHandle may include all the information returned by DatabaseMetaData.getColumns()?
If we do not add additional fields to the JdbcColumnHandle, due to serialization constraints, it seems that we can only implement a JdbcExtraColumnHandle in the base-jdbc package and configure JsonTypeInfo like this:

@JsonTypeInfo(
        use = JsonTypeInfo.Id.NAME,
        property = "@type")
@JsonSubTypes({
        @JsonSubTypes.Type(value = JdbcExtraColumnHandle.class, name = "system:io.trino.plugin.jdbc.JdbcExtraColumnHandle"),
        @JsonSubTypes.Type(value = JdbcColumnHandle.class, name = "system:io.trino.plugin.jdbc.JdbcColumnHandle")
})
public class JdbcColumnHandle
        implements ColumnHandle
{
}
public class JdbcExtraColumnHandle
        extends JdbcColumnHandle
{
    private final boolean autoIncrement;
    ...
}     

@chenjian2664 @ebyhr So which way is better?

@hqbhoho hqbhoho requested review from chenjian2664 and ebyhr and removed request for chenjian2664 March 27, 2025 03:58
Copy link
Member

@ebyhr ebyhr left a comment

Choose a reason for hiding this comment

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

Please update MySQL connector's documentation.

@@ -81,6 +83,9 @@ public JdbcConnector(
this.tableProperties = tableProperties.stream()
.flatMap(tablePropertiesProvider -> tablePropertiesProvider.getTableProperties().stream())
.collect(toImmutableList());
this.columnProperties = columnProperties.stream()
Copy link
Member

Choose a reason for hiding this comment

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

Add requireNonNull.

boolean isAutoIncrement = (boolean) column.getProperties().getOrDefault(AUTO_INCREMENT, false);
if (isAutoIncrement) {
Type type = column.getType();
if (!(type instanceof BigintType) && !(type instanceof IntegerType)) {
Copy link
Member

Choose a reason for hiding this comment

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

Replace order of IntegerType and BigintType. We usually order as smaller → larger.
Also, I think this limitation is wrong. We can enable auto increment on tinyint and smallint types.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Replace order of IntegerType and BigintType. We usually order as smaller → larger. Also, I think this limitation is wrong. We can enable auto increment on tinyint and smallint types.

Using AUTO_INCREMENT with float and double columns is deprecated as of MySQL 8.0.17 and support for it to be removed in a future version of MySQL. So we should only support integer types. I initially thought that the value ranges of ​TINYINT and ​SMALLINT were limited, so I assumed these two data types were not supported at first. I have added them.

columnProperties = ImmutableList.<PropertyMetadata<?>>builder()
.add(booleanProperty(
AUTO_INCREMENT,
"If column can auto increment",
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
"If column can auto increment",
"Generate a unique identity for new rows",

.collect(toImmutableList());
}

public static ColumnMetadata getColumnMetadata(JdbcColumnHandle handle)
Copy link
Member

Choose a reason for hiding this comment

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

This method can be private.


verifyCreateTableDefinition(
tablePrefix,
"(a bigint NOT NULL with (auto_increment = true), b bigint, c bigint) with (primary_key = ARRAY['a'])",
Copy link
Member

Choose a reason for hiding this comment

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

Uppercase with. Same for others.

@hqbhoho hqbhoho force-pushed the feature/support_column_properties_with_jdbc_connector branch from dbc00bb to ea695d8 Compare March 31, 2025 15:38
@github-actions github-actions bot added the docs label Mar 31, 2025
@hqbhoho hqbhoho requested a review from ebyhr April 1, 2025 00:56
@@ -30,7 +30,7 @@
import static io.airlift.slice.SizeOf.sizeOf;
import static java.util.Objects.requireNonNull;

public class JdbcColumnHandle
public final class JdbcColumnHandle
Copy link
Member

Choose a reason for hiding this comment

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

The 1st commit added removed final, and the 2nd commit restored it. Please completely remove the change.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done

@@ -162,13 +172,14 @@ public static Builder builderFrom(JdbcColumnHandle handle)
return new Builder(handle);
}

public static class Builder
public static final class Builder
Copy link
Member

Choose a reason for hiding this comment

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

The 1st commit added removed final, and the 2nd commit restored it. Please completely remove the change.

Comment on lines +239 to +249
assertQueryFails("CREATE TABLE " + tableName + " (a bigint, b bigint, c bigint) WITH (primary_key = ARRAY['a'])",
"Primary key must be NOT NULL in MySQL");
// primary key must exist in column list
assertQueryFails("CREATE TABLE " + tableName + " (a bigint, b bigint, c bigint) with (primary_key = ARRAY['d'])",
assertQueryFails("CREATE TABLE " + tableName + " (a bigint, b bigint, c bigint) WITH (primary_key = ARRAY['d'])",
"Column 'd' specified in property 'primary_key' doesn't exist in table");
assertQueryFails("CREATE TABLE " + tableName + " (a bigint, b bigint, c bigint) with (primary_key = ARRAY['A'])",
assertQueryFails("CREATE TABLE " + tableName + " (a bigint, b bigint, c bigint) WITH (primary_key = ARRAY['A'])",
Copy link
Member

Choose a reason for hiding this comment

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

This change is unrelated to "Add support create table with auto increment column". Please separate a commit.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done

}
}

private void verifyCreateTableDefinition(String tablePrefix, String tableDefinition, String showCreateTableFormat)
Copy link
Member

Choose a reason for hiding this comment

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

Why do we need to take a tablePrefix parameter from callers?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It‘s not necessary. I have remove it.

{
try (TestTable table = newTrinoTable("test_insert_with_auto_increment_column_", "(a bigint NOT NULL WITH (auto_increment = true), b bigint) WITH (primary_key = ARRAY['a'])")) {
assertUpdate("INSERT INTO " + table.getName() + " (b) VALUES (1), (2)", 2);
assertQuery("SELECT a, b FROM " + table.getName(), "VALUES (1, 1), (2, 2)");
Copy link
Member

Choose a reason for hiding this comment

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

Please replace assertQuery with assertThat(query()).

@Test
public void testAddColumnWithColumnProperties()
{
assertQueryFails("ALTER TABLE nation ADD COLUMN test_add_col_properties int WITH (auto_increment=true) ", "This connector does not support adding columns with column properties");
Copy link
Member

Choose a reason for hiding this comment

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

I would avoid modifying TPCH tables, even for negative test cases.

@Test
public void testShowColumnsWithAutoIncrementColumn()
{
try (TestTable table = newTrinoTable("test_show_columns_with_invalid_auto_increment_", "(a bigint NOT NULL WITH (auto_increment = true), b bigint) WITH (primary_key = ARRAY['a'])")) {
Copy link
Member

Choose a reason for hiding this comment

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

test_show_columns_with_invalid_auto_increment_

What is "invalid" in this test?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

No, I am careless!

@hqbhoho hqbhoho force-pushed the feature/support_column_properties_with_jdbc_connector branch from ea695d8 to 3c514c5 Compare April 1, 2025 06:34
@hqbhoho hqbhoho force-pushed the feature/support_column_properties_with_jdbc_connector branch from 3c514c5 to abd364a Compare April 1, 2025 06:44
@hqbhoho hqbhoho requested a review from ebyhr April 1, 2025 07:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

Successfully merging this pull request may close these issues.

2 participants