You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: testsV2/mysql_test.go
+49-9Lines changed: 49 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -27,36 +27,76 @@ var (
27
27
mysqlConnName=flag.String("mysql_conn_name", os.Getenv("MYSQL_CONNECTION_NAME"), "Cloud SQL MYSQL instance connection name, in the form of 'project:region:instance'.")
28
28
mysqlUser=flag.String("mysql_user", os.Getenv("MYSQL_USER"), "Name of database user.")
29
29
mysqlPass=flag.String("mysql_pass", os.Getenv("MYSQL_PASS"), "Password for the database user; be careful when entering a password on the command line (it may go into your terminal's history).")
30
-
mysqlDb=flag.String("mysql_db", os.Getenv("MYSQL_DB"), "Name of the database to connect to.")
31
-
32
-
mysqlPort=3306
30
+
mysqlDB=flag.String("mysql_db", os.Getenv("MYSQL_DB"), "Name of the database to connect to.")
0 commit comments