Reference documentation and code samples for the Google Cloud Sql Admin V1 Client class PartialResultMode.
Controls how the API should respond when the SQL execution result exceeds 10 MB.
Protobuf type google.cloud.sql.v1.ExecuteSqlPayload.PartialResultMode
Namespace
Google \ Cloud \ Sql \ V1 \ ExecuteSqlPayloadMethods
static::name
| Parameter | |
|---|---|
| Name | Description |
value |
mixed
|
static::value
| Parameter | |
|---|---|
| Name | Description |
name |
mixed
|
Constants
PARTIAL_RESULT_MODE_UNSPECIFIED
Value: 0Unspecified mode, effectively the same as FAIL_PARTIAL_RESULT.
Generated from protobuf enum PARTIAL_RESULT_MODE_UNSPECIFIED = 0;
FAIL_PARTIAL_RESULT
Value: 1Throw an error if the result exceeds 10 MB or if only a partial result can be retrieved. Don't return the result.
Generated from protobuf enum FAIL_PARTIAL_RESULT = 1;
ALLOW_PARTIAL_RESULT
Value: 2Return a truncated result and set partial_result to true if the result
exceeds 10 MB or if only a partial result can be retrieved due to error.
Don't throw an error.
Generated from protobuf enum ALLOW_PARTIAL_RESULT = 2;