Uses of Class
com.snowflake.snowpark_java.DeleteResult
-
Packages that use DeleteResult Package Description com.snowflake.snowpark_java Provides most of the classes for the Snowpark Java API. -
-
Uses of DeleteResult in com.snowflake.snowpark_java
Methods in com.snowflake.snowpark_java that return DeleteResult Modifier and Type Method Description DeleteResult
Updatable. delete()
Deletes all rows in the updatable and returns aDeleteResult
, representing number of rows deleted.DeleteResult
Updatable. delete(Column condition)
Deletes all rows in the updatable that satisfy specified condition and returns aDeleteResult
, representing number of rows deleted.DeleteResult
Updatable. delete(Column condition, DataFrame sourceData)
Deletes all rows in the updatable that satisfy specified condition where condition includes columns in otherDataFrame
, and returns aDeleteResult
, representing number of rows deleted.Methods in com.snowflake.snowpark_java that return types with arguments of type DeleteResult Modifier and Type Method Description TypedAsyncJob<DeleteResult>
UpdatableAsyncActor. delete()
Executes `Updatable.delete` asynchronously.TypedAsyncJob<DeleteResult>
UpdatableAsyncActor. delete(Column condition)
Executes `Updatable.delete` asynchronously.TypedAsyncJob<DeleteResult>
UpdatableAsyncActor. delete(Column condition, DataFrame sourceData)
Executes `Updatable.delete` asynchronously.
-