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

An extensible MySQL server implementation in Go.

Results 23 go-mysql-server issues
Sort by recently updated
recently updated
newest added

mysql -h'127.0.0.1' -u'user' -p'pass' homestead -e"SHOW VARIABLES WHERE Variable_name ='language'" mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 1105 (HY000) at line 1: unknown...

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 Commits d7fbc52 Bump to v4.17.19 2e1c0f2 Add npm-package 1b6c282 Bump to v4.17.18 a370ac8 Bump to v4.17.17 1144918...

dependencies
javascript

I get the following error after running a copy of the _example directory in my local machine. ``` $ cd ~/Projects/mysql_server_example $ wget https://raw.githubusercontent.com/src-d/go-mysql-server/master/_example/main.go $ go get github.com/src-d/go-mysql-server $ go...

I am using GORM to save in the database a struct that contains a []byte field: ``` type SecurityExtension struct { ApplicationIdentifier string `json:"application_identifier" binding:"required" gorm:"primary_key"` AccessToken []byte `json:"access_token"` RefreshToken...

This is an exciting project and I used it in my test harness for months, till the limitations basically made the situation untenable. At the very least I hope this...

what would the best way be to add stored procedure support? It seems we'd need `call procedure0()` `call procedure1(arg1)` ... like for functions, which are already supported, but instead of...

getting below problem with go get. how do i resolve this? go get github.com/src-d/go-mysql-server # github.com/src-d/go-mysql-server/auth /go/src/github.com/src-d/go-mysql-server/auth/native.go:133:35: not enough arguments in call to mysql.NewAuthServerStatic have () want (string, string, time.Duration)...

In testing out indexing capability with our product's custom IndexDriver, I found a bug. The following query would incorrectly return only a single result on an indexed column for an...

In postgres, when you have two UNNEST calls in the same select, the arrays are unrolled in parallel, and NULLs inserted into the shorter column. It would be useful to...

**To merge after https://github.com/src-d/go-mysql-server/pull/860** This PR: - Adds the VIEWs in the specified database to the rows returned by SHOW TABLES. - Removes the sorting of tables in the `ShowTables`...