public class UpdatableAsyncActor extends DataFrameAsyncActor
session| Modifier and Type | Method and Description |
|---|---|
TypedAsyncJob<DeleteResult> |
delete()
Executes `Updatable.delete` asynchronously.
|
TypedAsyncJob<DeleteResult> |
delete(Column condition)
Executes `Updatable.delete` asynchronously.
|
TypedAsyncJob<DeleteResult> |
delete(Column condition,
DataFrame sourceData)
Executes `Updatable.delete` asynchronously.
|
TypedAsyncJob<UpdateResult> |
update(Map<Column,Column> assignments)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
update(Map<Column,Column> assignments,
Column condition)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
update(Map<Column,Column> assignments,
Column condition,
DataFrame sourceData)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
updateColumn(Map<String,Column> assignments)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
updateColumn(Map<String,Column> assignments,
Column condition)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
updateColumn(Map<String,Column> assignments,
Column condition,
DataFrame sourceData)
Executes `Updatable.update` asynchronously.
|
collect, count, toLocalIteratorpublic TypedAsyncJob<UpdateResult> update(Map<Column,Column> assignments)
assignments - A map contains the column being updated and the new value.public TypedAsyncJob<UpdateResult> updateColumn(Map<String,Column> assignments)
assignments - A map contains the column being updated and the new value.public TypedAsyncJob<UpdateResult> update(Map<Column,Column> assignments, Column condition)
assignments - A map contains the column being updated and the new value.condition - The condition of the Column being updated.public TypedAsyncJob<UpdateResult> updateColumn(Map<String,Column> assignments, Column condition)
assignments - A map contains the column being updated and the new value.condition - The condition of the Column being updated.public TypedAsyncJob<UpdateResult> update(Map<Column,Column> assignments, Column condition, DataFrame sourceData)
assignments - A map contains the column being updated and the new value.condition - The condition of the Column being updated.sourceData - Another DataFrame being joined.public TypedAsyncJob<UpdateResult> updateColumn(Map<String,Column> assignments, Column condition, DataFrame sourceData)
assignments - A map contains the column being updated and the new value.condition - The condition of the Column being updated.sourceData - Another DataFrame being joined.public TypedAsyncJob<DeleteResult> delete()
public TypedAsyncJob<DeleteResult> delete(Column condition)
condition - The condition expressionpublic TypedAsyncJob<DeleteResult> delete(Column condition, DataFrame sourceData)
condition - The condition expressionsourceData - The source DataFrame© 2022 Snowflake Inc. All Rights Reserved