Commit 7231325a authored by Jun Chen's avatar Jun Chen
Browse files

import sql with default utf8 encode

parent 05136590
Showing with 1 addition and 1 deletion
+1 -1
......@@ -51,7 +51,7 @@ process_init_file() {
case "$f" in
*.sh) echo "$0: running $f"; . "$f" ;;
*.sql) echo "$0: running $f"; "${mysql[@]}" < "$f"; echo ;;
*.sql) echo "$0: running $f"; "${mysql[@]}" < "$f" –default-character-set = utf8; echo ;;
*.sql.gz) echo "$0: running $f"; gunzip -c "$f" | "${mysql[@]}"; echo ;;
*) echo "$0: ignoring $f" ;;
esac
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment