-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
base: master
Are you sure you want to change the base?
Support column properties with jdbc connector #25174
Conversation
This pull request has gone a while without any activity. Ask for help on #core-dev on Trino slack. |
7309388
to
dbc00bb
Compare
dbc00bb
to
7630693
Compare
7630693
to
dbc00bb
Compare
The JdbcColumnHandle may include all the information returned by DatabaseMetaData.getColumns()?
@chenjian2664 @ebyhr So which way is better? |
There was a problem hiding this 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() |
There was a problem hiding this comment.
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)) { |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"If column can auto increment", | |
"Generate a unique identity for new rows", |
.collect(toImmutableList()); | ||
} | ||
|
||
public static ColumnMetadata getColumnMetadata(JdbcColumnHandle handle) |
There was a problem hiding this comment.
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.
plugin/trino-mysql/src/test/java/io/trino/plugin/mysql/BaseMySqlConnectorTest.java
Show resolved
Hide resolved
|
||
verifyCreateTableDefinition( | ||
tablePrefix, | ||
"(a bigint NOT NULL with (auto_increment = true), b bigint, c bigint) with (primary_key = ARRAY['a'])", |
There was a problem hiding this comment.
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.
dbc00bb
to
ea695d8
Compare
@@ -30,7 +30,7 @@ | |||
import static io.airlift.slice.SizeOf.sizeOf; | |||
import static java.util.Objects.requireNonNull; | |||
|
|||
public class JdbcColumnHandle | |||
public final class JdbcColumnHandle |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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.
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'])", |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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)"); |
There was a problem hiding this comment.
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"); |
There was a problem hiding this comment.
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'])")) { |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, I am careless!
ea695d8
to
3c514c5
Compare
3c514c5
to
abd364a
Compare
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: