Skip to content

Instantly share code, notes, and snippets.

@merikan
merikan / Jenkinsfile
Last active February 23, 2026 04:17
Some Jenkinsfile examples
Some Jenkinsfile examples
@wahyudibo
wahyudibo / MySQL strict mode off.md
Last active February 11, 2019 15:40
Turn off mysql 5.7 strict mode

Turn off MySQL 5.7 Strict Mode Globally

  • Check mysql mode SELECT @@sql_mode;
  • Add this snippet to /etc/mysql/my.cnf or if you install mysql via homebrew (MAC OS), you need to copy my.cnf with cp $(brew --prefix mysql)/support-files/my-default.cnf /usr/local/etc/my.cnf
[mysqld]
# Default : STRICT_TRANS_TABLES,ONLY_FULL_GROUP_BY,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
sql_mode = ""
  • Restart mysql