◆ clearTable() [1/2]
| inline |
Clears (drops) one or all tables in the database cluster.
The operation is synchronous meaning that the table will be cleared before the function returns. The response payload returns the status of the operation along with the name of the table that was cleared.
| request_ | Request object containing the parameters for the operation. |
Definition at line 16242 of file KineticaFunctions.cs.
◆ clearTable() [2/2]
| inline |
Clears (drops) one or all tables in the database cluster.
The operation is synchronous meaning that the table will be cleared before the function returns. The response payload returns the status of the operation along with the name of the table that was cleared.
| table_name | Name of the table to be cleared, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. Empty string clears all available tables, though this behavior is be prevented by default via gpudb.conf parameter ‘disable_clear_all’. The default value is ”. |
| authorization | No longer used. User can pass an empty string. The default value is ”. |
| options | Optional parameters.
|
Definition at line 16319 of file KineticaFunctions.cs.
◆ ClearTableAsync() [1/2]
| inline |
Clears (drops) one or all tables in the database cluster.
(async)
The operation is synchronous meaning that the table will be cleared before the function returns. The response payload returns the status of the operation along with the name of the table that was cleared.
| request_ | Request object containing the parameters for the operation. |
| cancellationToken | Cancellation token to cancel the operation. |
Definition at line 16262 of file KineticaFunctions.cs.
◆ ClearTableAsync() [2/2]
| inline |
Clears (drops) one or all tables in the database cluster.
(async)
The operation is synchronous meaning that the table will be cleared before the function returns. The response payload returns the status of the operation along with the name of the table that was cleared.
| table_name | Name of the table to be cleared, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. Empty string clears all available tables, though this behavior is be prevented by default via gpudb.conf parameter ‘disable_clear_all’. The default value is ”. |
| authorization | No longer used. User can pass an empty string. The default value is ”. |
| options | Optional parameters.
|
| cancellationToken | Cancellation token to cancel the operation. |
Definition at line 16377 of file KineticaFunctions.cs.