YARN-7773. YARN Federation used Mysql as state store throw exception, Unknown column 'homeSubCluster' in 'field list'. Contributed by Yiran Wu.

This commit is contained in:
Inigo Goiri 2018-04-16 16:26:54 -07:00
parent 827d8593a5
commit 60e5c1b516
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ USE FederationStateStore
CREATE TABLE applicationsHomeSubCluster(
applicationId varchar(64) NOT NULL,
subClusterId varchar(256) NULL,
homeSubCluster varchar(256) NULL,
CONSTRAINT pk_applicationId PRIMARY KEY (applicationId)
);