Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-50881] Use cached schema instead of deep copying in dataframe.py #49734

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion python/pyspark/sql/connect/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def dtypes(self) -> List[Tuple[str, str]]:

@property
def columns(self) -> List[str]:
return self.schema.names
return copy.deepcopy(self._original_schema.names)

@property
def sparkSession(self) -> "SparkSession":
Expand Down Expand Up @@ -1988,6 +1988,11 @@ def registerTempTable(self, name: str) -> None:
warnings.warn("Deprecated in 2.0, use createOrReplaceTempView instead.", FutureWarning)
self.createOrReplaceTempView(name)

def _original_schema(self) -> StructType:
if self._cached_schema:
return self._cached_schema
return self.schema

def _map_partitions(
self,
func: "PandasMapIterFunction",
Expand Down