Skip to content
Merged
Show file tree
Hide file tree
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 @@ -74,7 +74,7 @@ public class HivePageSinkProvider
private final HiveSessionProperties hiveSessionProperties;
private final HiveWriterStats hiveWriterStats;
private final long perTransactionMetastoreCacheMaximumSize;
private final boolean temporaryStagingDirectoryDirectoryEnabled;
private final boolean temporaryStagingDirectoryEnabled;
private final String temporaryStagingDirectoryPath;

@Inject
Expand Down Expand Up @@ -111,7 +111,7 @@ public HivePageSinkProvider(
this.hiveSessionProperties = requireNonNull(hiveSessionProperties, "hiveSessionProperties is null");
this.hiveWriterStats = requireNonNull(hiveWriterStats, "hiveWriterStats is null");
this.perTransactionMetastoreCacheMaximumSize = config.getPerTransactionMetastoreCacheMaximumSize();
this.temporaryStagingDirectoryDirectoryEnabled = config.isTemporaryStagingDirectoryEnabled();
this.temporaryStagingDirectoryEnabled = config.isTemporaryStagingDirectoryEnabled();
this.temporaryStagingDirectoryPath = config.getTemporaryStagingDirectoryPath();
}

Expand Down Expand Up @@ -182,7 +182,7 @@ private HivePageSink createPageSink(HiveWritableTableHandle handle, boolean isCr
eventClient,
hiveSessionProperties,
hiveWriterStats,
temporaryStagingDirectoryDirectoryEnabled,
temporaryStagingDirectoryEnabled,
temporaryStagingDirectoryPath);

return new HivePageSink(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public List<Class<? extends SuiteModuleProvider>> getSuiteModules()
HiveVersionProvider.ModuleProvider.class);
}

@SuppressWarnings("rawtypes") // TODO https://github.com/trinodb/trino/issues/9904
@SuppressWarnings("rawtypes")
@Override
public List<Class<? extends TableManager>> getTableManagers()
{
Expand Down