File: end_include_file.inc

package info (click to toggle)
mysql-8.0 8.0.43-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,273,924 kB
  • sloc: cpp: 4,684,605; ansic: 412,450; pascal: 108,398; java: 83,641; perl: 30,221; cs: 27,067; sql: 26,594; sh: 24,181; python: 21,816; yacc: 17,169; php: 11,522; xml: 7,388; javascript: 7,076; makefile: 2,194; lex: 1,075; awk: 670; asm: 520; objc: 183; ruby: 97; lisp: 86
file content (117 lines) | stat: -rw-r--r-- 4,283 bytes parent folder | download
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# ==== Purpose ====
#
# See include/begin_include_file.inc
#
#
# ==== Usage ====
#
# # At the end of include/my_file.inc:
# --let $include_filename= my_file.inc
# [--let $skip_restore_connection= 1]
# [--let $rpl_debug= 1]
# --source include/begin_include_file.inc
#
# Parameters:
#   $include_filename
#     Name of file that sources this file.
#
#   $skip_restore_connection
#     By default, this script restores the connection that was active
#     when begin_include_file.inc was sourced.  If
#     $skip_restore_connection is set, then this step is skipped and
#     end_include_file.inc leaves the connection as it was before
#     end_include_file.inc was sourced.

--let $_tmp= `SELECT SUBSTRING('$_include_file_enabled_warnings', 1, 1)`
--let $_include_file_enabled_warnings= `SELECT SUBSTRING('$_include_file_enabled_warnings', 2)`
if ($_tmp) {
  if ($_tmp != $ENABLE_WARNINGS) {
    # Enable all the disabled warnings
    --enable_warnings
  }
}

if (!$_tmp) {
  if ($_include_file_disable_warnings_list) {
    --let $_include_file_disable_warnings = `SELECT SUBSTRING('$_include_file_disable_warnings_list', 1, LOCATE('|', '$_include_file_disable_warnings_list') - 1)`
    --let $_include_file_disable_warnings_list = `SELECT SUBSTRING('$_include_file_disable_warnings_list', LOCATE('|', '$_include_file_disable_warnings_list') + 1)`

    # Check if there exist any disabled warnings
    if ($_include_file_disable_warnings) {
      # Disabled warnings are present, enable all the warings if $ENABLE_WARNINGS
      # is not set and then disable only the warnings present in disabld warning list.
      if (!$ENABLE_WARNINGS) {
        --enable_warnings
      }
      --disable_warnings $_include_file_disable_warnings
    }

    if (!$_include_file_disable_warnings) {
      # No disabled warnings exist, check if any enabled warnings present
      --let $_include_file_enable_warnings = `SELECT SUBSTRING('$_include_file_enable_warnings_list', 1, LOCATE('|', '$_include_file_enable_warnings_list') - 1)`
      --let $_include_file_enable_warnings_list = `SELECT SUBSTRING('$_include_file_enable_warnings_list', LOCATE('|', '$_include_file_enable_warnings_list') + 1)`

      if ($_include_file_enable_warnings) {
        # Enabled warnings exist, disable all the warnings first if $ENABLE_WARNINGS
        # is set and then enable only the warnings present in enabled warnings list.
        if ($ENABLE_WARNINGS) {
          --disable_warnings
        }
        --enable_warnings $_include_file_enable_warnings
      }

      if (!$_include_file_enable_warnings) {
        # There exist no disabled or enabled warnings, disable all
        # the warnings.
        --disable_warnings
      }
    }
  }
}

--let $_tmp= `SELECT SUBSTRING('$_include_file_enabled_query_log', 1, 1)`
--let $_include_file_enabled_query_log= `SELECT SUBSTRING('$_include_file_enabled_query_log', 2)`
if ($_tmp) {
  --enable_query_log
}
if (!$_tmp) {
  --disable_query_log
}

--let $_tmp= `SELECT SUBSTRING('$_include_file_enabled_result_log', 1, 1)`
--let $_include_file_enabled_result_log= `SELECT SUBSTRING('$_include_file_enabled_result_log', 2)`
if ($_tmp) {
  --enable_result_log
}
if (!$_tmp) {
  --disable_result_log
}

--let $_tmp= `SELECT SUBSTRING('$_include_file_enabled_abort_on_error', 1, 1)`
--let $_include_file_enabled_abort_on_error= `SELECT SUBSTRING('$_include_file_enabled_abort_on_error', 2)`
if ($_tmp) {
  --enable_abort_on_error
}
if (!$_tmp) {
  --disable_abort_on_error
}

--let $_include_file_indent= `SELECT REPEAT('.', $_include_file_depth - 1)`

--let $_include_file_rpl_connection_name= `SELECT SUBSTRING_INDEX('$_include_file_connection', ',', 1)`
--let $_include_file_connection= `SELECT SUBSTRING('$_include_file_connection', LENGTH('$_include_file_rpl_connection_name') + 2)`
if (!$skip_restore_connection)
{
  --let $rpl_connection_name= $_include_file_rpl_connection_name
  --source include/rpl_connection.inc
}
--let $skip_restore_connection= 0

--dec $_include_file_depth

if ($rpl_debug)
{
  --echo $_include_file_indent==== END include/$include_filename ====
  --echo $_include_file_indent con='$CURRENT_CONNECTION' warn='$ENABLE_WARNINGS' qlog='$ENABLE_QUERY_LOG' rlog='$ENABLE_RESULT_LOG' aborterr='$ENABLE_ABORT_ON_ERROR'
}
--let $include_filename=