mysqlengine 0.1.11.4__cp312-cp312-win_amd64.whl → 0.1.11.6__cp312-cp312-win_amd64.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.
- mysqlengine/charset.cp312-win_amd64.pyd +0 -0
- mysqlengine/column.cp312-win_amd64.pyd +0 -0
- mysqlengine/connection.c +7339 -8572
- mysqlengine/connection.cp312-win_amd64.pyd +0 -0
- mysqlengine/connection.py +15 -64
- mysqlengine/constant.cp312-win_amd64.pyd +0 -0
- mysqlengine/database.c +10617 -9170
- mysqlengine/database.cp312-win_amd64.pyd +0 -0
- mysqlengine/database.py +20 -2
- mysqlengine/dtype.c +118 -118
- mysqlengine/dtype.cp312-win_amd64.pyd +0 -0
- mysqlengine/engine.cp312-win_amd64.pyd +0 -0
- mysqlengine/errors.cp312-win_amd64.pyd +0 -0
- mysqlengine/index.cp312-win_amd64.pyd +0 -0
- mysqlengine/protocol.cp312-win_amd64.pyd +0 -0
- mysqlengine/query.c +13416 -13990
- mysqlengine/query.cp312-win_amd64.pyd +0 -0
- mysqlengine/query.py +2 -8
- mysqlengine/regex.cp312-win_amd64.pyd +0 -0
- mysqlengine/settings.cp312-win_amd64.pyd +0 -0
- mysqlengine/transcode.c +118 -118
- mysqlengine/transcode.cp312-win_amd64.pyd +0 -0
- mysqlengine/utils.c +118 -118
- mysqlengine/utils.cp312-win_amd64.pyd +0 -0
- {mysqlengine-0.1.11.4.dist-info → mysqlengine-0.1.11.6.dist-info}/METADATA +1 -1
- {mysqlengine-0.1.11.4.dist-info → mysqlengine-0.1.11.6.dist-info}/RECORD +29 -29
- {mysqlengine-0.1.11.4.dist-info → mysqlengine-0.1.11.6.dist-info}/WHEEL +1 -1
- {mysqlengine-0.1.11.4.dist-info → mysqlengine-0.1.11.6.dist-info}/LICENSE +0 -0
- {mysqlengine-0.1.11.4.dist-info → mysqlengine-0.1.11.6.dist-info}/top_level.txt +0 -0
|
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.
|
|
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.
|
|
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
|