Skip to content

Commit

Permalink
1.Release new features: ETL、Programable Script、Data Visualization、Run…
Browse files Browse the repository at this point in the history
… History Viewer、Administrator Search.

2.Adjust some code file format.
3.Imporve comments.
  • Loading branch information
sinllychen committed Oct 19, 2017
1 parent eae0e88 commit 461d19d
Show file tree
Hide file tree
Showing 312 changed files with 59,476 additions and 15,765 deletions.
38 changes: 0 additions & 38 deletions mysql/bdajob.sql

This file was deleted.

26 changes: 17 additions & 9 deletions mysql/main.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,24 @@ create database studio CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
grant all privileges on studio.* to 'root'@'localhost' identified by '111111';
grant all privileges on studio.* to 'root'@'%' identified by '111111';

drop database if exists test;
create database test CHARACTER SET 'utf8' COLLATE 'utf8_general_ci';
grant all privileges on test.* to 'root'@'localhost' identified by '111111';
grant all privileges on test.* to 'root'@'%' identified by '111111';

flush privileges;

use studio;
source /root/mysql/studio/account.sql;
source /root/mysql/studio/bdajob.sql;
source /root/mysql/studio/dataset.sql;
source /root/mysql/studio/jobcron.sql;
source /root/mysql/studio/oozieaction.sql;
source /root/mysql/studio/ooziejob.sql;
source /root/mysql/studio/program.sql;
source /root/mysql/studio/supernode.sql;
source /root/mysql/studio/category.sql;
source /root/mysql/studio/moduleversion.sql;

source /root/mysql/account.sql;
source /root/mysql/bdajob.sql;
source /root/mysql/dataset.sql;
source /root/mysql/jobcron.sql;
source /root/mysql/oozieaction.sql;
source /root/mysql/ooziejob.sql;
source /root/mysql/program.sql;
source /root/mysql/supernode.sql;
source /root/mysql/category.sql;
use test;
source /root/mysql/test/titanic_train.sql;
56 changes: 0 additions & 56 deletions mysql/oozieaction.sql

This file was deleted.

Loading

0 comments on commit 461d19d

Please sign in to comment.