We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1376f0a + fc95456 commit 9cf4819Copy full SHA for 9cf4819
build.sh
@@ -2,7 +2,7 @@
2
#
3
4
5
-RELEASE_VERSION="1.0.10"
+RELEASE_VERSION="1.0.11"
6
7
function build {
8
osname=$1
go/logic/applier.go
@@ -870,6 +870,9 @@ func (this *Applier) ApplyDMLEventQuery(dmlEvent *binlog.BinlogDMLEvent) error {
870
if err != nil {
871
return err
872
}
873
+ if _, err := tx.Exec("SET SESSION time_zone = '+00:00'"); err != nil {
874
+ return err
875
+ }
876
if _, err := tx.Exec(query, args...); err != nil {
877
878
0 commit comments