You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: airbyte-integrations/connectors/source-mysql/src/main/kotlin/io/airbyte/integrations/source/mysql/MySqlSourceMetadataQuerier.kt
+23-7
Original file line number
Diff line number
Diff line change
@@ -32,14 +32,24 @@ class MySqlSourceMetadataQuerier(
32
32
base.extraChecks()
33
33
if (base.config.global) {
34
34
// Extra checks for CDC
35
-
var cdcVariableCheckQueries:List<Pair<String, String>> =
35
+
var cdcVariableCheckQueries:List<Triple<String, String, String>> =
36
36
listOf(
37
-
Pair("show variables where Variable_name = 'log_bin'", "ON"),
38
-
Pair("show variables where Variable_name = 'binlog_format'", "ROW"),
39
-
Pair("show variables where Variable_name = 'binlog_row_image'", "FULL"),
37
+
Triple("log_bin", "show variables where Variable_name = 'log_bin'", "ON"),
38
+
Triple(
39
+
"binlog_format",
40
+
"show variables where Variable_name = 'binlog_format'",
41
+
"ROW"
42
+
),
43
+
Triple(
44
+
"binlog_row_image",
45
+
"show variables where Variable_name = 'binlog_row_image'",
| 3.11.9 | 2025-03-14 |[55731](https://github.com/airbytehq/airbyte/pull/55731)| More meaningful errors for variables used in extra checks for CDC |
229
230
| 3.11.8 | 2025-03-14 |[55761](https://github.com/airbytehq/airbyte/pull/55761)| Do not perform complex sampling for source-mysql |
230
231
| 3.11.7 | 2025-03-12 |[55734](https://github.com/airbytehq/airbyte/pull/55734)| Expose additional stream context for debezium properties at startup |
231
232
| 3.11.6 | 2025-03-06 |[55237](https://github.com/airbytehq/airbyte/pull/55237)|[Fix fetching binlog status for version >=8.4](https://github.com/airbytehq/airbyte/pull/55237#top)|
0 commit comments