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

fix compute(temporary = TRUE) for Oracle #633

Merged
merged 3 commits into from Aug 13, 2021
Merged

fix compute(temporary = TRUE) for Oracle #633

merged 3 commits into from Aug 13, 2021

Conversation

mgirlich
Copy link
Collaborator

@mgirlich mgirlich commented Apr 7, 2021

Fixes #621

@mgirlich mgirlich added this to the Minor Fixes - 2021-08 milestone Jul 30, 2021
Copy link
Member

@krlmlr krlmlr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, I wonder if we should be more generous with newlines.

Comment on lines 120 to 121
"CREATE ", if (temporary) sql("GLOBAL TEMPORARY "), "TABLE \n",
as.sql(name, con), " AS ", sql,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"CREATE ", if (temporary) sql("GLOBAL TEMPORARY "), "TABLE \n",
as.sql(name, con), " AS ", sql,
"CREATE ", if (temporary) sql("GLOBAL TEMPORARY "), "TABLE\n",
as.sql(name, con), " AS\n", sql,

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It improves readability a bit so I changed it here and for the other backends 👍

@mgirlich mgirlich merged commit a97d59c into master Aug 13, 2021
@mgirlich mgirlich deleted the compute-oracle branch August 14, 2021 05:44
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

Successfully merging this pull request may close these issues.

Compute() with Oracle - missing keyword GLOBAL
2 participants