You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -259,7 +259,7 @@ public function getAccountId()
259
259
/**
260
260
* Sets account_id
261
261
*
262
-
* @param int $account_id The mandatory ID of an account in which the query shall be executed. Must be a valid account ID greater than 0.
262
+
* @param int $account_id The ID of the account in which the query is to be executed.
263
263
*
264
264
* @return $this
265
265
*/
@@ -284,7 +284,7 @@ public function getExternalId()
284
284
/**
285
285
* Sets external_id
286
286
*
287
-
* @param string $external_id A clientgenerated nonce which uniquely identifies the query to be executed. Subsequent submissions with the same external ID will not re-execute the query but instead return the existing execution with that ID. Either the External ID or a Maximal Cache Age greater than 0 must be specified. If both are specified the External ID will have precedence and the Maximal Cache Age will be ignored.
287
+
* @param string $external_id A client-generated nonce which uniquely identifies some action to be executed. Subsequent requests with the same external ID do not execute the action again, but return the original result.
288
288
*
289
289
* @return $this
290
290
*/
@@ -309,7 +309,7 @@ public function getMaxCacheAge()
309
309
/**
310
310
* Sets max_cache_age
311
311
*
312
-
* @param int $max_cache_age The maximal age in minutes of cached query executions to return. If an equivalent query execution with the same Query String, Account ID and Spaces parameters not older than the specified age is already available that execution will be returned instead of a newly started execution. Set to 0 or null (and set a unique, previously unused External ID) to force a new query execution irrespective of previous executions. Either the External ID or a Cache Duration greater than 0 must be specified. If both are specified, the External ID will be preferred (and the Maximal Cache Age ignored).
312
+
* @param int $max_cache_age The maximum age (in minutes) of queries already executed that are to be taken into account. If an equivalent query is already available and not older than the specified age, its result will be returned instead of re-executing it. To force a new execution, specify a new, unique external ID and no maximum cache age.
313
313
*
314
314
* @return $this
315
315
*/
@@ -334,7 +334,7 @@ public function getQueryString()
334
334
/**
335
335
* Sets query_string
336
336
*
337
-
* @param string $query_string The SQL statement which is being submitted for execution. Must be a valid PrestoDB/Athena SQL statement.
337
+
* @param string $query_string The PrestoDB/Athena SQL statement to be executed.
338
338
*
339
339
* @return $this
340
340
*/
@@ -366,7 +366,7 @@ public function getScannedDataLimit()
366
366
/**
367
367
* Sets scanned_data_limit
368
368
*
369
-
* @param float $scanned_data_limit The maximal amount of scanned data that this query is allowed to scan. After this limit is reachedquery will be canceled by the system.
369
+
* @param float $scanned_data_limit The maximum amount of data that the query is allowed to scan. After the limit is reached, the query will be canceled.
370
370
*
371
371
* @return $this
372
372
*/
@@ -391,7 +391,7 @@ public function getSpaceIds()
391
391
/**
392
392
* Sets space_ids
393
393
*
394
-
* @param int[] $space_ids The IDs of the spaces in which the query shall be executed. At most 5 space IDs may be specified. All specified spaces must be owned by the account specified by the accountId property. The spaces property may be missing or empty to query all spaces of the specified account.
394
+
* @param int[] $space_ids The IDs of the spaces belonging to the specified account in which the query is to be executed. Do not provide any value to query all spaces in the specified account.
0 commit comments