Sign in
apache
/
hive
/
refs/heads/branch-2
/
.
/
metastore
/
scripts
/
upgrade
/
mysql
/
upgrade-1.1.0-to-1.2.0.mysql.sql
blob: 406504bad6ab372c17d57c52ae39fa2e7eeb9738 [
file
] [
log
] [
blame
]
SELECT
'Upgrading MetaStore schema from 1.1.0 to 1.2.0'
AS
' '
;
UPDATE
VERSION
SET
SCHEMA_VERSION
=
'1.2.0'
,
VERSION_COMMENT
=
'Hive release version 1.2.0'
where
VER_ID
=
1
;
SELECT
'Finished upgrading MetaStore schema from 1.1.0 to 1.2.0'
AS
' '
;