mirror of https://github.com/apache/druid.git
remove redundant index for primary key in config table
This commit is contained in:
parent
38b2041ad9
commit
ac31afbce5
|
@ -65,7 +65,7 @@ public class DbConnector
|
|||
dbi,
|
||||
configTableName,
|
||||
String.format(
|
||||
"CREATE table %s (name VARCHAR(255) NOT NULL, payload LONGTEXT NOT NULL, INDEX(name), PRIMARY KEY(name))",
|
||||
"CREATE table %s (name VARCHAR(255) NOT NULL, payload LONGTEXT NOT NULL, PRIMARY KEY(name))",
|
||||
configTableName
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue