Commit ce1f9fc
authored
Ignore any host url protocol that includes "mysql://" (#179)
Fixes #170. As far as I can tell, certain projects suggest/require using
"mysql://", "mysqlx://", "jdbc:mysql://", etc. as the protocol portion
of the host url. This ends up with really weird behavior in MySQL.jl
because it assumes there's a plugin that needs to be loaded. So the fix
here is just a simple check if "mysql://" is in the host url and if so,
only use the rest of the string after it.1 parent 2da4c33 commit ce1f9fc
2 files changed
+8
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
30 | 34 | | |
31 | 35 | | |
32 | 36 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
6 | 10 | | |
7 | 11 | | |
8 | 12 | | |
| |||
0 commit comments