Skip to content

Commit

Permalink
mysql config
Browse files Browse the repository at this point in the history
Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
  • Loading branch information
shlomi-noach committed Aug 16, 2023
1 parent c3e249d commit d23e017
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/ci-github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ echo "${create_t1}" | schemadiff load > $output_file

grep -q 'CREATE TABLE' $output_file

alias mysql="mysql -uroot -proot --port 3306"
mysql -e "create database if not exists test"
echo "${create_t1}" | mysql test
alias my='mysql -uroot -proot --port 3306'
my -e "create database if not exists test"
echo "${create_t1}" | my test


rm $output_file
Expand Down

0 comments on commit d23e017

Please sign in to comment.