Skip to content

Commit

Permalink
Upgrade to 1.1.2 for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
renecannao committed Mar 12, 2016
1 parent 2b0510b commit 96ad301
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion docker/images/proxysql/centos7-build/proxysql.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Summary: A high-performance MySQL proxy
Name: proxysql
Version: 1.1.1
Version: 1.1.2
Release: 1
License: GPL+
Group: Development/Tools
Expand Down Expand Up @@ -50,6 +50,8 @@ chkconfig --del %{name}
%{_sysconfdir}/init.d/%{name}

%changelog
* Sat Mar 11 2016 Rene Cannao <[email protected]> 1.1.2
- Upgraded to release 1.1.2
* Sat Oct 31 2015 Rene Cannao <[email protected]> 1.0.1
- Compiles 1.0.1
* Wed Sep 9 2015 Andrei Ismail <[email protected]> 0.2
Expand Down
2 changes: 1 addition & 1 deletion docker/images/proxysql/debian-7.8-build/proxysql.ctl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2

Package: proxysql
Version: 1.1.1
Version: 1.1.2
Maintainer: Rene Cannao <[email protected]>
Architecture: amd64
# Changelog: CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion docker/images/proxysql/debian-8.2-build/proxysql.ctl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2

Package: proxysql
Version: 1.1.1
Version: 1.1.2
Maintainer: Rene Cannao <[email protected]>
Architecture: amd64
# Changelog: CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion docker/images/proxysql/ubuntu-14.04-build/proxysql.ctl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Homepage: http://www.proxysql.com
Standards-Version: 3.9.2

Package: proxysql
Version: 1.1.1
Version: 1.1.2
Maintainer: Rene Cannao <[email protected]>
Architecture: amd64
# Changelog: CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion lib/MySQL_Thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ char ** MySQL_Threads_Handler::get_variables_list() {
// Returns true if the given name is the name of an existing mysql variable
bool MySQL_Threads_Handler::has_variable(const char *name) {
size_t no_vars = sizeof(mysql_thread_variables_names) / sizeof(char *);
for (unsigned int i = 0; i < no_vars, mysql_thread_variables_names[i] != NULL; ++i) {
for (unsigned int i = 0; i < no_vars ; ++i) {
size_t var_len = strlen(mysql_thread_variables_names[i]);
if (strlen(name) == var_len && !strncmp(name, mysql_thread_variables_names[i], var_len)) {
return true;
Expand Down

0 comments on commit 96ad301

Please sign in to comment.