(tableName string, columnName string)
| 61 | } |
| 62 | |
| 63 | func (t tableColumnTypes) delete(tableName string, columnName string) { |
| 64 | if _, ok := t[tableName]; !ok { |
| 65 | return |
| 66 | } |
| 67 | delete(t[tableName], columnName) |
| 68 | } |
| 69 | |
| 70 | // isKeyword checks if the keyword is a MySQL keyword. |
| 71 | func isKeyword(suspect string) bool { |
no outgoing calls