Skip to content

Commit 96ad301

Browse files
committed
Upgrade to 1.1.2 for docker
1 parent 2b0510b commit 96ad301

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

docker/images/proxysql/centos7-build/proxysql.spec

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Summary: A high-performance MySQL proxy
99
Name: proxysql
10-
Version: 1.1.1
10+
Version: 1.1.2
1111
Release: 1
1212
License: GPL+
1313
Group: Development/Tools
@@ -50,6 +50,8 @@ chkconfig --del %{name}
5050
%{_sysconfdir}/init.d/%{name}
5151

5252
%changelog
53+
* Sat Mar 11 2016 Rene Cannao <[email protected]> 1.1.2
54+
- Upgraded to release 1.1.2
5355
* Sat Oct 31 2015 Rene Cannao <[email protected]> 1.0.1
5456
- Compiles 1.0.1
5557
* Wed Sep 9 2015 Andrei Ismail <[email protected]> 0.2

docker/images/proxysql/debian-7.8-build/proxysql.ctl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
44
Standards-Version: 3.9.2
55

66
Package: proxysql
7-
Version: 1.1.1
7+
Version: 1.1.2
88
Maintainer: Rene Cannao <[email protected]>
99
Architecture: amd64
1010
# Changelog: CHANGELOG.md

docker/images/proxysql/debian-8.2-build/proxysql.ctl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
44
Standards-Version: 3.9.2
55

66
Package: proxysql
7-
Version: 1.1.1
7+
Version: 1.1.2
88
Maintainer: Rene Cannao <[email protected]>
99
Architecture: amd64
1010
# Changelog: CHANGELOG.md

docker/images/proxysql/ubuntu-14.04-build/proxysql.ctl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
44
Standards-Version: 3.9.2
55

66
Package: proxysql
7-
Version: 1.1.1
7+
Version: 1.1.2
88
Maintainer: Rene Cannao <[email protected]>
99
Architecture: amd64
1010
# Changelog: CHANGELOG.md

lib/MySQL_Thread.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ char ** MySQL_Threads_Handler::get_variables_list() {
11781178
// Returns true if the given name is the name of an existing mysql variable
11791179
bool MySQL_Threads_Handler::has_variable(const char *name) {
11801180
size_t no_vars = sizeof(mysql_thread_variables_names) / sizeof(char *);
1181-
for (unsigned int i = 0; i < no_vars, mysql_thread_variables_names[i] != NULL; ++i) {
1181+
for (unsigned int i = 0; i < no_vars ; ++i) {
11821182
size_t var_len = strlen(mysql_thread_variables_names[i]);
11831183
if (strlen(name) == var_len && !strncmp(name, mysql_thread_variables_names[i], var_len)) {
11841184
return true;

0 commit comments

Comments
 (0)