You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2022/10/01 11:52:21 UTC

[shardingsphere] branch master updated: Remove unnecessary files (#21302)

This is an automated email from the ASF dual-hosted git repository.

zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 09a1756dbe7 Remove unnecessary files (#21302)
09a1756dbe7 is described below

commit 09a1756dbe7052afa6eea168b40633b9be5c01fe
Author: Guocheng Tang <to...@apache.org>
AuthorDate: Sat Oct 1 19:52:07 2022 +0800

    Remove unnecessary files (#21302)
---
 .github/workflows/mysql/init/init.sql              | 19 ---------------
 .../docker-compose.yml                             | 28 ----------------------
 2 files changed, 47 deletions(-)

diff --git a/.github/workflows/mysql/init/init.sql b/.github/workflows/mysql/init/init.sql
deleted file mode 100644
index 24f154e4905..00000000000
--- a/.github/workflows/mysql/init/init.sql
+++ /dev/null
@@ -1,19 +0,0 @@
--- 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.
-
-CREATE DATABASE demo_ds_0;
-CREATE DATABASE demo_ds_1;
-CREATE DATABASE demo_ds_2;
diff --git a/examples/shardingsphere-example-generator/docker-compose.yml b/examples/shardingsphere-example-generator/docker-compose.yml
deleted file mode 100644
index 47a73604614..00000000000
--- a/examples/shardingsphere-example-generator/docker-compose.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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.
-version: '3'
-services:
-  db:
-    image: 'docker.io/mysql:latest'
-    restart: always
-    container_name: mysql
-    volumes:
-      - ./mysql/init:/docker-entrypoint-initdb.d/
-    ports:
-      - '3306:3306'
-    environment:
-      TZ: Asia/Shanghai
-      MYSQL_ROOT_PASSWORD: "123456"