mysqlengine 0.1.11.4__cp311-cp311-macosx_10_9_universal2.whl → 0.1.11.6__cp311-cp311-macosx_10_9_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mysqlengine might be problematic. Click here for more details.

Binary file
mysqlengine/query.py CHANGED
@@ -7570,7 +7570,7 @@ class COMPARE_DATA:
7570
7570
  )
7571
7571
 
7572
7572
  # Create unique columns
7573
- self._data[UNIQUE_COLUMN] = self._concat_columns(
7573
+ self._data[UNIQUE_COLUMN] = self._tb.concat_df_columns(
7574
7574
  self._data[self._query._ops_unique]
7575
7575
  )
7576
7576
 
@@ -7585,7 +7585,7 @@ class COMPARE_DATA:
7585
7585
  if set_contains(self._query._operations, 2) or set_contains(
7586
7586
  self._query._operations, 5
7587
7587
  ):
7588
- self._data[COMPARE_COLUMN] = self._concat_columns(
7588
+ self._data[COMPARE_COLUMN] = self._tb.concat_df_columns(
7589
7589
  self._data[self._query._ops_compare]
7590
7590
  )
7591
7591
 
@@ -7761,12 +7761,6 @@ class COMPARE_DATA:
7761
7761
  self._name,
7762
7762
  )
7763
7763
 
7764
- @cython.cfunc
7765
- @cython.inline(True)
7766
- def _concat_columns(self, df: DataFrame) -> object:
7767
- "(cfunc) Concatenate DataFrame columns to one columns `<Series[str]>`."
7768
- return Series(df.values.tolist(), index=df.index).apply(self._tb._escape_item)
7769
-
7770
7764
  @cython.cfunc
7771
7765
  @cython.inline(True)
7772
7766
  def _parse_timetable_names(self, tb: TimeTable, times: Series) -> object:
Binary file
Binary file