Skip to main content

Community

Connector Improvement: Fivetran Log Connector - adding sync schedules and MAR type

Answered

Please sign in to leave a comment.

Comments

2 comments

  • Official comment

    Hi Marco - thank you for submitting. We have added your suggestions to our product backlog so that we can prioritize them against our other work. Especially #2 has already been on our radar

    I agree; especially on point (2); I don't know if anyone else is having difficulty (and I have opened a support ticket for this already) but using the native SQL connector shows buginess as well -- I would expect the second table to the information (signed_up) so that I could compute it myself at least, but it doesn't :/

    SELECT
    b.connector_id IS NOT NULL,
    COUNT(*)
    FROM (
    SELECT DISTINCT
    connector_id
    FROM
    fivetran_log.active_volume
    )
    a
    LEFT OUTER JOIN (
    SELECT
    connector_id,
    signed_up
    FROM
    fivetran_log.connector
    ) b
    ON
    a.connector_id = b.connector_id
    GROUP BY
    1;
    ?column? | count
    ----------+-------
    f | 63
    (1 row)