~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

Viewing changes to mysql-test/suite/sys_vars/r/max_digest_length_basic.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-04-16 20:07:10 UTC
  • mto: (1.3.9 vivid-proposed)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20150416200710-pcrsa022082zj46k
Tags: upstream-5.6.24
ImportĀ upstreamĀ versionĀ 5.6.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
select @@global.max_digest_length;
 
2
@@global.max_digest_length
 
3
123
 
4
select @@session.max_digest_length;
 
5
ERROR HY000: Variable 'max_digest_length' is a GLOBAL variable
 
6
show global variables like 'max_digest_length';
 
7
Variable_name   Value
 
8
max_digest_length       123
 
9
show session variables like 'max_digest_length';
 
10
Variable_name   Value
 
11
max_digest_length       123
 
12
select * from information_schema.global_variables
 
13
where variable_name='max_digest_length';
 
14
VARIABLE_NAME   VARIABLE_VALUE
 
15
MAX_DIGEST_LENGTH       123
 
16
select * from information_schema.session_variables
 
17
where variable_name='max_digest_length';
 
18
VARIABLE_NAME   VARIABLE_VALUE
 
19
MAX_DIGEST_LENGTH       123
 
20
set global max_digest_length=1;
 
21
ERROR HY000: Variable 'max_digest_length' is a read only variable
 
22
set session max_digest_length=1;
 
23
ERROR HY000: Variable 'max_digest_length' is a read only variable