bad variable name
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
| MySQL Tuning Primer Script |
Undecided
|
Unassigned |
Bug Description
This same error was reported here https:/
The script ends with the following error:
/mysql_
right after outputting the header for the JOIN section.
mysql -v provides:
Your MariaDB connection id is 15324930
Server version: 10.1.26-
Is it not possible for the script to do some fault handling / testing with regard to which `join_buffer` variation to use, depending on the MySQL environment?
description: | updated |
Jack Holborn (jackho) wrote : | #1 |
This script is no longer maintained
On Tue, Aug 7, 2018 at 11:46 AM, Jack Holborn <email address hidden>
wrote:
> Trying to debug I could get rid of the error by replacing as so on line
> 943 :
>
> - mysql_variable \'join_buffer%\' join_buffer_size
> + mysql_variable \'join_
>
> I'm not sure why '%' was used here, but it seems to work.
>
> --
> You received this bug notification because you are subscribed to MySQL
> Tuning Primer Script.
> https:/
>
> Title:
> bad variable name
>
> To manage notifications about this bug go to:
> https:/
>
TodoInTX (matt-day32) wrote : | #3 |
Older versions of MySQL (<4.0) named the variable simply join_buffer. The
% was a compatibility requirement.
On Tue, Aug 7, 2018 at 1:40 PM, Matthew Montgomery <email address hidden> wrote:
> This script is no longer maintained
>
> On Tue, Aug 7, 2018 at 11:46 AM, Jack Holborn <email address hidden>
> wrote:
>
>> Trying to debug I could get rid of the error by replacing as so on line
>> 943 :
>>
>> - mysql_variable \'join_buffer%\' join_buffer_size
>> + mysql_variable \'join_
>>
>> I'm not sure why '%' was used here, but it seems to work.
>>
>> --
>> You received this bug notification because you are subscribed to MySQL
>> Tuning Primer Script.
>> https:/
>>
>> Title:
>> bad variable name
>>
>> To manage notifications about this bug go to:
>> https:/
>> +subscriptions
>>
>
>
TodoInTX (matt-day32) wrote : | #4 |
Please use : https:/
On Tue, Aug 7, 2018 at 1:45 PM, Matthew Montgomery <email address hidden> wrote:
> Older versions of MySQL (<4.0) named the variable simply join_buffer. The
> % was a compatibility requirement.
>
> On Tue, Aug 7, 2018 at 1:40 PM, Matthew Montgomery <email address hidden> wrote:
>
>> This script is no longer maintained
>>
>> On Tue, Aug 7, 2018 at 11:46 AM, Jack Holborn <<email address hidden>
>> > wrote:
>>
>>> Trying to debug I could get rid of the error by replacing as so on line
>>> 943 :
>>>
>>> - mysql_variable \'join_buffer%\' join_buffer_size
>>> + mysql_variable \'join_
>>>
>>> I'm not sure why '%' was used here, but it seems to work.
>>>
>>> --
>>> You received this bug notification because you are subscribed to MySQL
>>> Tuning Primer Script.
>>> https:/
>>>
>>> Title:
>>> bad variable name
>>>
>>> To manage notifications about this bug go to:
>>> https:/
>>> +subscriptions
>>>
>>
>>
>
Trying to debug I could get rid of the error by replacing as so on line 943 :
- mysql_variable \'join_buffer%\' join_buffer_size buffer_ size\' join_buffer_size
+ mysql_variable \'join_
I'm not sure why '%' was used here, but it seems to work.