Skip to content
New issue

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

Add support of simple SQL distributed insert #438

Open
1 of 6 tasks
donhardman opened this issue Jan 10, 2025 · 0 comments
Open
1 of 6 tasks

Add support of simple SQL distributed insert #438

donhardman opened this issue Jan 10, 2025 · 0 comments
Assignees

Comments

@donhardman
Copy link
Contributor

Proposal:

We currently support the following INSERT syntax:

INSERT INTO table_name (column1, column2) VALUES (value1, value2);

However, we don't support the simplified syntax where column names are omitted:

INSERT INTO table_name VALUES (value1, value2);

We need to implement functionality that will:

  1. Retrieve the table's column names when they are not explicitly provided in the query
  2. Continue supporting the standard INSERT syntax with explicit column names

This enhancement will allow both forms of INSERT syntax to work properly.

Checklist:

To be completed by the assignee. Check off tasks that have been completed or are not applicable.

  • Implementation completed
  • Tests developed
  • Documentation updated
  • Documentation reviewed
  • Changelog updated
  • OpenAPI YAML updated and issue created to rebuild clients
@donhardman donhardman self-assigned this Jan 10, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant