Skip to content
    Back to all Bounties

    Earn 4,500 ($45.00)

    Time Remainingdue 1 year ago
    Canceled

    Implement DuckDB + Go integration

    JayGoel
    JayGoel
    Posted 1 year ago

    Bounty Description

    Problem Description

    The goal is to take a list of JSON objects as input and insert data into a DuckDB database.

    You will complete the implementation from here: https://replit.com/@JayGoel/DuckDB-Go-Insertion#main.go

    Acceptance Criteria

    • Input: an .ndjson file where each row will have a json object. The JSON will not have any Array or Map structure.
    • The function will then do the following:
    • This should be broken into the following functions: createTable(), addColumns(), insertData(). When first creating the table, just create a single column, __row_id.