1
0
mirror of synced 2025-12-25 02:09:19 -05:00

🐛 Fix handling binary data type for Mssql source (#7748)

* Fix data type tests Mssql source

* update test for boolean data type in  Mysql source

* dump versions for Mssql and Mysql source

* revert changes regarding handling bit data type

* revert changes regarding date and time data type tests Mssql source

* revert changes regarding date data type for Mssql source

* update message in mssql.md

* minor format changes

* format changes
This commit is contained in:
oneshcheret
2021-11-11 14:15:23 +02:00
committed by GitHub
parent bea9bb5cbb
commit 70ed18b89e
12 changed files with 33 additions and 37 deletions

View File

@@ -15,7 +15,6 @@ import io.airbyte.commons.functional.CheckedConsumer;
import io.airbyte.commons.json.Jsons;
import io.airbyte.commons.util.AutoCloseableIterator;
import io.airbyte.db.jdbc.JdbcDatabase;
import io.airbyte.db.jdbc.JdbcSourceOperations;
import io.airbyte.integrations.base.IntegrationRunner;
import io.airbyte.integrations.base.Source;
import io.airbyte.integrations.base.ssh.SshWrappedSource;
@@ -254,9 +253,4 @@ public class MySqlSource extends AbstractJdbcSource implements Source {
CDC
}
@Override
protected JdbcSourceOperations getSourceOperations() {
return new MySqlSourceOperations();
}
}