File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/databricks/sql/backend Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ def execute_command(
104104 parameters: List of parameters to bind to the query
105105 async_op: Whether to execute the command asynchronously
106106 enforce_embedded_schema_correctness: Whether to enforce schema correctness
107- row_limit: Maximum number of rows to fetch overall. Only supported for SEA protocol.
107+ row_limit: Maximum number of rows in the operation result.
108108
109109 Returns:
110110 If async_op is False, returns a ResultSet object containing the
Original file line number Diff line number Diff line change @@ -970,6 +970,7 @@ def execute_command(
970970 useArrowNativeTypes = spark_arrow_types ,
971971 parameters = parameters ,
972972 enforceEmbeddedSchemaCorrectness = enforce_embedded_schema_correctness ,
973+ resultRowLimit = row_limit ,
973974 )
974975 resp = self .make_request (self ._client .ExecuteStatement , req )
975976
You can’t perform that action at this time.
0 commit comments