go-mysql icon indicating copy to clipboard operation
go-mysql copied to clipboard

Go packages for MySQL

Results 11 go-mysql issues
Sort by recently updated
recently updated
newest added

With MariaDB **10.8.3**, the slow log format has been changed a little bit. It adds tab character behind the 'Time' column, which causes the slow log parsing failed. Take this...

Replace io.ReadSeeker with io.Reader to load multiple logs.

the real reason that fi overflow cause index out of range panic is the length of variable f slice need increament when in values length in quota is less than...

Thread_id was inadvertently (?) picked up in NumberMetrics but not being parsed out of UserHost. This change will parse it out of UserHost and add it to NumberMetrics without significantly...

sql: insert into tb values(1) Fingerprint(sql) got panic: index out of range ![image](https://user-images.githubusercontent.com/1827047/48851434-065fc200-ede6-11e8-825e-9c9c1115f80a.png)

- "insert into t3 values(2);" will result in index out of range add init buf size to fix

I found a bug that it panics when a query has only one element in VALUES clause. To fingerprint the query, it may need at most 4/3 memory than original...

Hi~ Currently, characters are not substituted correctly in the lower case. ``` select * from test where a = 3*3 => select * from test where a = ?*3 select...