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
SELECT INTO
executionType
LISTING
The following call:
const result = identify("SELECT * INTO public.\"MyTable1\" FROM public.\"MyTable2\"");
Yields the following result:
[ { "start": 0, "end": 53, "text": "SELECT * INTO public.\"MyTable1\" FROM public.\"MyTable2\"", "type": "SELECT", "executionType": "LISTING", "parameters": [ ], "tables": [ ] } ]
Given that SELECT INTO statements modify data, the executionType is arguably more accurately described by MODIFICATION.
MODIFICATION
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following call:
Yields the following result:
Given that
SELECT INTO
statements modify data, theexecutionType
is arguably more accurately described byMODIFICATION
.The text was updated successfully, but these errors were encountered: