| Package | Description |
|---|---|
| com.snowflake.snowpark_java |
Provides most of the classes for the Snowpark Java API.
|
| Modifier and Type | Method and Description |
|---|---|
UpdateResult |
Updatable.update(Map<Column,Column> assignments)
Updates all rows in the Updatable with specified assignments and returns a
UpdateResult, representing number of rows modified and number of multi-joined rows modified. |
UpdateResult |
Updatable.update(Map<Column,Column> assignments,
Column condition)
Updates all rows in the updatable that satisfy specified condition with specified assignments
and returns a
UpdateResult, representing number of rows modified and number of
multi-joined rows modified. |
UpdateResult |
Updatable.update(Map<Column,Column> assignments,
Column condition,
DataFrame sourceData)
Updates all rows in the updatable that satisfy specified condition where condition includes
columns in other
DataFrame, and returns a UpdateResult, representing number of
rows modified and number of multi-joined rows modified. |
UpdateResult |
Updatable.updateColumn(Map<String,Column> assignments)
Updates all rows in the updatable with specified assignments and returns a
UpdateResult, representing number of rows modified and number of multi-joined rows modified. |
UpdateResult |
Updatable.updateColumn(Map<String,Column> assignments,
Column condition)
Updates all rows in the updatable that satisfy specified condition with specified assignments
and returns a
UpdateResult, representing number of rows modified and number of
multi-joined rows modified. |
UpdateResult |
Updatable.updateColumn(Map<String,Column> assignments,
Column condition,
DataFrame sourceData)
Updates all rows in the updatable that satisfy specified condition where condition includes
columns in other
DataFrame, and returns a UpdateResult, representing number of
rows modified and number of multi-joined rows modified. |
| Modifier and Type | Method and Description |
|---|---|
TypedAsyncJob<UpdateResult> |
UpdatableAsyncActor.update(Map<Column,Column> assignments)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
UpdatableAsyncActor.update(Map<Column,Column> assignments,
Column condition)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
UpdatableAsyncActor.update(Map<Column,Column> assignments,
Column condition,
DataFrame sourceData)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
UpdatableAsyncActor.updateColumn(Map<String,Column> assignments)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
UpdatableAsyncActor.updateColumn(Map<String,Column> assignments,
Column condition)
Executes `Updatable.update` asynchronously.
|
TypedAsyncJob<UpdateResult> |
UpdatableAsyncActor.updateColumn(Map<String,Column> assignments,
Column condition,
DataFrame sourceData)
Executes `Updatable.update` asynchronously.
|
© 2023 Snowflake Inc. All Rights Reserved