mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-19 15:40:10 +02:00
2018-06-24 Fred Gleason <fredg@paravelsystems.com>
* Changed the default value of the 'Charset=' parameter in the [mySQL] section of rd.conf(5) from 'latin1' to 'utf8'. * Changed the default value of the 'Collation=' parameter in the [mySQL] section of rd.conf(5) from 'latin1_swedish_ci' to 'utf8_general_ci'.
This commit is contained in:
parent
41bd2825e5
commit
4f05308b37
@ -17515,3 +17515,9 @@
|
|||||||
2018-06-23 Fred Gleason <fredg@paravelsystems.com>
|
2018-06-23 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a regression that broke processing of the 'Serial Out' ['SO']
|
* Fixed a regression that broke processing of the 'Serial Out' ['SO']
|
||||||
and 'UDP Out' ['UO'] RMLs.
|
and 'UDP Out' ['UO'] RMLs.
|
||||||
|
2018-06-24 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Changed the default value of the 'Charset=' parameter in the
|
||||||
|
[mySQL] section of rd.conf(5) from 'latin1' to 'utf8'.
|
||||||
|
* Changed the default value of the 'Collation=' parameter in the
|
||||||
|
[mySQL] section of rd.conf(5) from 'latin1_swedish_ci' to
|
||||||
|
'utf8_general_ci'.
|
||||||
|
@ -31,9 +31,11 @@ HeartbeatInterval=360
|
|||||||
|
|
||||||
; The following three settings control the attributes of new DB tables
|
; The following three settings control the attributes of new DB tables
|
||||||
; created by Rivendell.
|
; created by Rivendell.
|
||||||
Engine=MyISAM
|
;Engine=MyISAM
|
||||||
Charset=utf8
|
; 'Charset' and 'Collation' should *not* changed except for development
|
||||||
Collation=utf8_general_ci
|
; purposes.
|
||||||
|
;Charset=utf8
|
||||||
|
;Collation=utf8_general_ci
|
||||||
|
|
||||||
[AudioStore]
|
[AudioStore]
|
||||||
MountSource=
|
MountSource=
|
||||||
|
4
lib/rd.h
4
lib/rd.h
@ -62,8 +62,8 @@
|
|||||||
#define DEFAULT_MYSQL_DRIVER "QMYSQL3"
|
#define DEFAULT_MYSQL_DRIVER "QMYSQL3"
|
||||||
#define DEFAULT_MYSQL_HEARTBEAT_INTERVAL 360
|
#define DEFAULT_MYSQL_HEARTBEAT_INTERVAL 360
|
||||||
#define DEFAULT_MYSQL_ENGINE "MyISAM"
|
#define DEFAULT_MYSQL_ENGINE "MyISAM"
|
||||||
#define DEFAULT_MYSQL_CHARSET "latin1"
|
#define DEFAULT_MYSQL_CHARSET "utf8"
|
||||||
#define DEFAULT_MYSQL_COLLATION "latin1_swedish_ci"
|
#define DEFAULT_MYSQL_COLLATION "utf8_general_ci"
|
||||||
#define MYSQL_BUILTIN_DATABASE "mysql"
|
#define MYSQL_BUILTIN_DATABASE "mysql"
|
||||||
#define POSTGRESQL_BUILTIN_DATABASE "template1"
|
#define POSTGRESQL_BUILTIN_DATABASE "template1"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user