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 TrinoOutputFile.create javadoc #20867

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public interface TrinoOutputFile
{
/**
* Create file exclusively, failing if the file already exists. For file systems which do not
* Create file exclusively, failing or overwriting if the file already exists. For file systems which do not
* support exclusive creation (e.g. S3), this will fallback to createOrOverwrite().
*
* @throws FileAlreadyExistsException If a file of that name already exists
Expand All @@ -53,7 +53,7 @@ default void createExclusive(Slice content)
}

/**
* Create file exclusively, failing if the file already exists. For file systems which do not
* Create file exclusively, failing or overwriting if the file already exists. For file systems which do not
* support exclusive creation (e.g. S3), this will fall back to createOrOverwrite().
*
* @throws FileAlreadyExistsException If a file of that name already exists
Expand Down