1
ALTER TABLE abc ADD PARTITION (year = 2014,month=1,day=1) location '/data/input/abc/year=2014/month=1/day=1';
FAILED: ParseException line 1:47 character ' ' not supported here
爲什麼這個錯誤就要到了蜂巢alter table語句
ALTER TABLE abc ADD PARTITION (year = 2014,month=1,day=1) location '/data/input/abc/year=2014/month=1/day=1';
FAILED: ParseException line 1:47 character ' ' not supported here
爲什麼這個錯誤就要到了蜂巢alter table語句
它出現的錯誤發生,因爲你有你的分區命令的內部空間。
year = 2014
嘗試,而不是
year=2014
...假設你的年柱是int
。類型。如果它是一串你需要
year='2014'