We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I believe that the code example in the "Append To Table" section of the "Node.js Client (Neo)" contains an error in the line
const appender = await connection.createAppender('main', 'target_table');
In this example, the arguments to the createAppender function seem to be first the schema name and second the table name. However, the method actually expects the arguments the other way around: https://github.com/duckdb/duckdb-node-neo/blob/6ecc181699291b3126e21a05f1531bfd55071d2d/api/src/DuckDBConnection.ts#L166
createAppender
Page URL: https://duckdb.org/docs/stable/clients/node_neo/overview.html
The text was updated successfully, but these errors were encountered:
@flammel, thanks, indeed this was off. This has been fixed via #5173.
Sorry, something went wrong.
No branches or pull requests
Hi,
I believe that the code example in the "Append To Table" section of the "Node.js Client (Neo)" contains an error in the line
In this example, the arguments to the
createAppender
function seem to be first the schema name and second the table name.However, the method actually expects the arguments the other way around: https://github.com/duckdb/duckdb-node-neo/blob/6ecc181699291b3126e21a05f1531bfd55071d2d/api/src/DuckDBConnection.ts#L166
Page URL: https://duckdb.org/docs/stable/clients/node_neo/overview.html
The text was updated successfully, but these errors were encountered: