File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ def json_extract(
224
224
225
225
>>> s = bpd.Series(['{"class": {"students": [{"id": 5}, {"id": 12}]}}'])
226
226
>>> bbq.json_extract(s, json_path="$.class")
227
- 0 "{ \\ \ " students\\ \ " :[{\\ \ " id\\ \ " :5},{\\ \ " id\\ \ " :12}]}"
227
+ 0 { "students":[{"id":5},{"id":12}]}
228
228
dtype: string
229
229
230
230
Args:
Original file line number Diff line number Diff line change @@ -322,8 +322,6 @@ def _to_ibis_expr(
322
322
if not columns :
323
323
return ibis .memtable ([])
324
324
325
- # Make sure all dtypes are the "canonical" ones for BigFrames. This is
326
- # important for operations like UNION where the schema must match.
327
325
table = self ._table .select (columns )
328
326
base_table = table
329
327
if self ._reduced_predicate is not None :
@@ -1031,8 +1029,6 @@ def _to_ibis_expr(
1031
1029
# Make sure we don't have any unbound (deferred) columns.
1032
1030
table = self ._table .select (columns )
1033
1031
1034
- # Make sure all dtypes are the "canonical" ones for BigFrames. This is
1035
- # important for operations like UNION where the schema must match.
1036
1032
table = table .select (table [column ] for column in table .columns )
1037
1033
base_table = table
1038
1034
if self ._reduced_predicate is not None :
You can’t perform that action at this time.
0 commit comments