We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I notice that in NewStoreWithDB function, MyISAM is specified to to create table. Would you please expain why MyISAM is needed?
func NewStoreWithDB(db *sql.DB, tableName string, gcInterval int) *Store { store := &Store{ db: &gorp.DbMap{Db: db, Dialect: gorp.MySQLDialect{Encoding: "UTF8", Engine: "MyISAM"}}, tableName: "oauth2_token", stdout: os.Stderr, }
The text was updated successfully, but these errors were encountered:
I am having the same problem using CloudSQL
3161 Storage engine MyISAM is disabled (Table creation is disallowed)
Sorry, something went wrong.
No branches or pull requests
Hi, I notice that in NewStoreWithDB function, MyISAM is specified to to create table.
Would you please expain why MyISAM is needed?
The text was updated successfully, but these errors were encountered: