Greg Harris
Greg Harris
I've got the same problem but on a different resource: ``` com.squareup.moshi.JsonDataException: Expected an int but was NULL at path $.subreddits[0].active_user_count ``` The record coming back from the request is...
Yeah I read through #442 and it seems like you're correctly disabling the quoting, otherwise the connector would throw an exception almost immediately. The logs that you're showing don't reveal...
Yeah, I think quote.sql.identifiers=never lets the database take over the case conversions, and it's possible that mariadb is defaulting to printing in all-caps. Looking at some tests and examples, when...
It appears that a fix for this has already been proposed in #715 . We will follow up with that PR to get the fix merged in.
@robinroos I don't believe we have any plans to support processing of complex data types (struct, map, list) or inserting into a hierarchy of tables. If you need to do...
@markns To load a custom dialect, you will need three components: * The Dialect class itself (`PostgresInsertOnConflictDoNothingSqlDatabaseDialect`) * [The Dialect Provider](https://github.com/confluentinc/kafka-connect-jdbc/blob/72f1e0ab0ad466935f845922d3babd0f6a483cb0/src/main/java/io/confluent/connect/jdbc/dialect/GenericDatabaseDialect.java#L108-L122) (typically `PostgresInsertOnConflictDoNothingSqlDatabaseDialect$Provider`) * [A ServiceLoader configuration file](https://github.com/confluentinc/kafka-connect-jdbc/blob/master/src/main/resources/META-INF/services/io.confluent.connect.jdbc.dialect.DatabaseDialectProvider) (exactly `META-INF/services/io.confluent.connect.jdbc.dialect.DatabaseDialectProvider`)...
This will require a FirebirdDatabaseDialect implementation, which then needs to override the default behavior for that query. We don't have plans for this at the moment, but would accept a...
@daanroosen-DS Support for complex data types is not planned at this time, but if you have an idea on what the functionality would look like, we would be happy to...
@adityagupta1089 The connector knows nothing about foreign keys, and this is a pretty difficult issue to tackle. You've already got some good ideas, and hopefully this information will help! >...
I think this is trying to solve the same problem as #501