Merge pull request #1322 from himanshug/fix_audit_tbl_idx

fixing the typo for audit table (type, created_date) index creation
This commit is contained in:
Fangjin Yang 2015-04-30 13:22:04 -07:00
commit 15ed308a4b
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ public abstract class SQLMetadataConnector implements MetadataStorageConnector
tableName, getSerialType(), getPayloadType()
),
String.format("CREATE INDEX idx_%1$s_key_time ON %1$s(audit_key, created_date)", tableName),
String.format("CREATE INDEX idx_%1$s_type_time ON %1$s(audit_key, created_date)", tableName),
String.format("CREATE INDEX idx_%1$s_type_time ON %1$s(type, created_date)", tableName),
String.format("CREATE INDEX idx_%1$s_audit_time ON %1$s(created_date)", tableName)
)
);