Skip to content

Commit

Permalink
Add missing script header
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust authored and svoj committed May 30, 2019
1 parent 1d0c274 commit 4adf52a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/bin/bash

src_data_dir="${MYSQLTEST_VARDIR}/mysqld.1/data/"
python -c "import socket as s; sock = s.socket(s.AF_UNIX); sock.bind('${src_data_dir}/slocket')"
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -e

COPY_LOG=$1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -e

# Insert 100 batches of 100 records each to a table with following schema:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -e

# Initially loads a chunk of data.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -e

# Insert 10 batches of 10 records each to a table with following schema:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
#!/bin/bash

src_data_dir="${MYSQLTEST_VARDIR}/mysqld.1/data/"
rm "${src_data_dir}/slocket"
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

set -e

binlog_line=($(grep -o "Last binlog file position [0-9]*, file name .*\.[0-9]*" ${MYSQLTEST_VARDIR}/log/mysqld.2.err | tail -1))
Expand Down

0 comments on commit 4adf52a

Please sign in to comment.