(driverName string)
| 36 | } |
| 37 | |
| 38 | func getSetSQL(driverName string) (string, string) { |
| 39 | switch driverName { |
| 40 | case mysql.Dialector{}.Name(): |
| 41 | return "SET @testName := ?", "SELECT @testName" |
| 42 | default: |
| 43 | return "", "" |
| 44 | } |
| 45 | } |
no test coverage detected