From b63270f1d355458e9f5f2543d4320c5c832c41fe Mon Sep 17 00:00:00 2001 From: Min Chen Date: Fri, 4 Oct 2013 17:27:04 -0700 Subject: [PATCH] CLOUDSTACK-4816: Add global configure s3.multipart.enabled --- .../cloud/upgrade/dao/Upgrade420to421.java | 10 ++++++-- setup/db/db/schema-420to421.sql | 24 +++++++++++++++++++ 2 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 setup/db/db/schema-420to421.sql diff --git a/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java b/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java index 6707eb9bef9..27704e8739e 100755 --- a/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java +++ b/engine/schema/src/com/cloud/upgrade/dao/Upgrade420to421.java @@ -26,6 +26,7 @@ import java.sql.SQLException; import org.apache.log4j.Logger; import com.cloud.utils.exception.CloudRuntimeException; +import com.cloud.utils.script.Script; public class Upgrade420to421 implements DbUpgrade { final static Logger s_logger = Logger.getLogger(Upgrade420to421.class); @@ -33,7 +34,7 @@ public class Upgrade420to421 implements DbUpgrade { @Override public String[] getUpgradableVersionRange() { - return new String[] { "4.2.0" }; + return new String[] { "4.2.0", "4.2.1" }; } @Override @@ -48,7 +49,12 @@ public class Upgrade420to421 implements DbUpgrade { @Override public File[] getPrepareScripts() { - return null; + String script = Script.findScript("", "db/schema-420to421.sql"); + if (script == null) { + throw new CloudRuntimeException("Unable to find db/schema-420to421.sql"); + } + + return new File[] { new File(script) }; } @Override diff --git a/setup/db/db/schema-420to421.sql b/setup/db/db/schema-420to421.sql new file mode 100644 index 00000000000..1e6341e0d16 --- /dev/null +++ b/setup/db/db/schema-420to421.sql @@ -0,0 +1,24 @@ +-- Licensed to the Apache Software Foundation (ASF) under one +-- or more contributor license agreements. See the NOTICE file +-- distributed with this work for additional information +-- regarding copyright ownership. The ASF licenses this file +-- to you under the Apache License, Version 2.0 (the +-- "License"); you may not use this file except in compliance +-- with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, +-- software distributed under the License is distributed on an +-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +-- KIND, either express or implied. See the License for the +-- specific language governing permissions and limitations +-- under the License. + +--; +-- Schema upgrade from 4.2.0 to 4.2.1; +--; + + +INSERT IGNORE INTO `cloud`.`configuration` VALUES ('Advanced', 'DEFAULT', 'management-server', 's3.multipart.enabled', 'true', 'enable s3 multipart upload'); +