You are here

function _backup_migrate_get_sql_file_footer_mysql in Backup and Migrate 8.2

The footer of the sql dump file.

1 call to _backup_migrate_get_sql_file_footer_mysql()
backup_migrate_backup_db_to_file_mysql in includes/db.mysql.inc
Get the sql dump file.

File

includes/db.mysql.inc, line 126

Code

function _backup_migrate_get_sql_file_footer_mysql() {
  return "\n\n/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;\n/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;\n/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;\n/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;\n/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;\n/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;\n";
}