1# 2# Bug#12688860 : SECURITY RECOMMENDATION: PASSWORDS ON CLI 3# 4CREATE DATABASE b12688860_db; 5CREATE TABLE b12688860_db.b12688860_tab (c1 INT); 6# Creating a temp sql file to be loaded. 7Warning: Using a password on the command line interface can be insecure. 8b12688860_db.b12688860_tab: Records: 3 Deleted: 0 Skipped: 0 Warnings: 0 9SELECT * FROM b12688860_db.b12688860_tab; 10c1 111 122 133 14DROP TABLE b12688860_db.b12688860_tab; 15DROP DATABASE b12688860_db; 16# Dropping the temp file 17 18End of tests 19