Skip to content

Commit e0118cc

Browse files
committed
escape git hell
1 parent 532b3ad commit e0118cc

3 files changed

Lines changed: 0 additions & 16 deletions

File tree

src/QueryOperators.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ function translate_dispatch(::typeof(QueryOperators.filter), iterator, call, cal
1717
end
1818

1919
@code_instead QueryOperators.groupby SourceCode Any Expr Any Expr
20-
<<<<<<< HEAD
21-
function translate_dispatch(::typeof(QueryOperators.groupby), ungrouped, group_function, group_function_expression, map_selector, map_function_expression; options...)
22-
SQLExpression(Symbol("GROUP BY"),
23-
translate(ungrouped; options...),
24-
translate(group_function(model_row(ungrouped)).code; options...)
25-
=======
2620

2721
struct GroupOfRows{Group, Row}
2822
group::Group
@@ -52,7 +46,6 @@ function translate_dispatch(::typeof(QueryOperators.groupby), ungrouped, group_f
5246
SQLExpression(Symbol("GROUP BY"),
5347
translate(ungrouped; options...),
5448
translate(group_function(model).code; options...)
55-
>>>>>>> 60e2521
5649
)
5750
end
5851

src/library.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,9 @@ export if_else
9898
@code_instead isless Any SourceCode
9999
@code_instead isless SourceCode SourceCode
100100
@translate_default ::typeof(isless) :<
101-
<<<<<<< HEAD
102-
=======
103101

104102
@code_instead length SourceCode
105103
@translate_default ::typeof(length) :COUNT
106-
>>>>>>> 60e2521
107104

108105
@code_instead ismissing SourceCode
109106
@translate_default ::typeof(ismissing) Symbol("IS NULL")

test/runtests.jl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,10 @@ database2 = Database(SQLite.DB(filename))
5252
DataTable |>
5353
length == 347
5454

55-
<<<<<<< HEAD
56-
# database.Track |>
57-
# @groupby(_.AlbumId) |>
58-
# @map({AlbumId = key(_), Count = length(_)})
59-
=======
6055
@test (database.Track |>
6156
@groupby(_.AlbumId) |>
6257
@map({AlbumId = key(_), Count = length(_.AlbumId)}) |>
6358
collect |>
6459
first).Count == 10
65-
>>>>>>> 60e2521
6660

6761
end

0 commit comments

Comments
 (0)