File: datadict_bug_12777.inc

package info (click to toggle)
mysql-5.1 5.1.73-1%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 197,132 kB
  • ctags: 93,377
  • sloc: cpp: 579,952; ansic: 429,462; perl: 49,053; sh: 21,692; pascal: 21,272; yacc: 12,801; makefile: 4,545; xml: 4,114; sql: 3,297; lex: 1,265; asm: 1,023
file content (60 lines) | stat: -rw-r--r-- 1,840 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#### --source suite/funcs_1/datadict/datadict_bug_12777.inc
#

# columns in INFORMATION_SCHEMA with VARCHAR(4096) on Linux and Intel or AMD
# processor are shown as VARCHAR(512) on Windows, VARCHAR(1023) on AIX and HPUX,
# VARCHAR(1024) on Solaris10, ... see below and in bug #12777 for details.
# So we need to replace the output for these systems. There may be other still
# not tested / detected systems.
#
# Setting the variables used below has been moved to the beginning of the datadict
# tests to "suite/funcs_1/datadict/datadict_load.inc".
#
# SELECT character_maximum_length INTO @CML
#   FROM information_schema.columns
#  WHERE table_schema = 'information_schema'
#    AND table_name   = 'columns'
#    AND column_name  = 'table_catalog';

# this enables the --replace_result only if needed, using this we never replace
# results on 'simple Linux' and so we will see any changes that might be
# suppressed by the - only on some systems used - replacements.


# Windows XP 32bit
if ($bug_12777_0512)
{
   # switch next 2 lines on for debugging the correct detection of the operating systems
   # let $message= value 512 detected - 1st replace statement activated!;
   # --source include/show_msg.inc
   #                nnnn       3*n
   --replace_result 512 4096  1536 12288
}

# aix52, aix52-64bit, hp3750, hp3750-64bit, hpux11, hpux11-64bit,
if ($bug_12777_1023)
{
   #                nnnn       3*n
   --replace_result 1023 4096  3069 12288
}

# Solaris10, 32bit
if ($bug_12777_1024)
{
   #                nnnn       3*n
   --replace_result 1024 4096  3072 12288
}

# Linux Suse 9.3 32bit Intel/AMD
if ($bug_12777_2048)
{
   #                nnnn       3*n
   --replace_result 2048 4096  6144 12288
}

# build-5.0-standard
if ($bug_12777_4095)
{
   #                nnnn       3*n
   --replace_result 4095 4096  12285 12288
}