Skip to content

Commit

Permalink
chore: support mysql lower table names (#1335)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuriwuyun authored Dec 18, 2024
1 parent 12a9bfe commit 5dc4162
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions addons/mysql/config/mysql5.7-config-constraint.cue
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,9 @@
// This variable describes the case sensitivity of file names on the file system where the data directory is located.
lower_case_file_system?: string & "OFF" | "ON"

// Affects how the server handles identifier case sensitivity
lower_case_table_names?: int & >=0 & <=1

// Enabling this variable causes the source to verify events read from the binary log by examining checksums, and to stop with an error in the event of a mismatch.
master_verify_checksum?: string & "OFF" | "ON" | *"OFF"

Expand Down
1 change: 1 addition & 0 deletions addons/mysql/config/mysql5.7-config-effect-scope.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,7 @@ staticParameters:
- log_bin_basename
- log_error
- lower_case_file_system
- lower_case_table_names
- max_digest_length
- myisam_mmap_size
- myisam_recover_options
Expand Down

0 comments on commit 5dc4162

Please sign in to comment.