mirror of https://github.com/apache/nifi.git
NIFI-655:
- Ensuring identities are unique in the key table.
This commit is contained in:
parent
5ce44b1fe2
commit
6f82802f7a
|
@ -45,7 +45,7 @@ public class KeyDataSourceFactoryBean implements FactoryBean {
|
|||
// ----------
|
||||
private static final String CREATE_KEY_TABLE = "CREATE TABLE KEY ("
|
||||
+ "ID INT NOT NULL PRIMARY KEY AUTO_INCREMENT, "
|
||||
+ "IDENTITY VARCHAR2(4096) NOT NULL, "
|
||||
+ "IDENTITY VARCHAR2(4096) NOT NULL UNIQUE, "
|
||||
+ "KEY VARCHAR2(100) NOT NULL"
|
||||
+ ")";
|
||||
|
||||
|
|
Loading…
Reference in New Issue