Skip to content

Commit

Permalink
fix: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Aug 2, 2024
1 parent f38b363 commit 96c0552
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions datafusion/sqllogictest/test_files/string_view.slt
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,6 @@ logical_plan
02)--Filter: CAST(test.column2_utf8 AS Utf8View) = test.column1_utf8view
03)----TableScan: test projection=[column1_utf8, column2_utf8, column1_utf8view]

<<<<<<< HEAD
## Test distinct aggregates
query III
SELECT
Expand Down Expand Up @@ -356,7 +355,6 @@ logical_plan
01)Aggregate: groupBy=[[]], aggr=[[count(DISTINCT test.column1_utf8), count(DISTINCT test.column1_utf8view), count(DISTINCT test.column1_dict)]]
02)--TableScan: test projection=[column1_utf8, column1_utf8view, column1_dict]

=======
query TT
EXPLAIN SELECT
STARTS_WITH(column1_utf8view, 'foo') as c,
Expand All @@ -366,7 +364,6 @@ FROM test;
logical_plan
01)Projection: starts_with(test.column1_utf8view, Utf8View("foo")) AS c, starts_with(test.column1_utf8view, test.column2_utf8view) AS c2
02)--TableScan: test projection=[column1_utf8view, column2_utf8view]
>>>>>>> 222263c15 (simplify string view handling)

statement ok
drop table test;
Expand All @@ -388,6 +385,5 @@ select t.dt from dates t where arrow_cast('2024-01-01', 'Utf8View') < t.dt;
----
2024-01-23


statement ok
drop table dates;

0 comments on commit 96c0552

Please sign in to comment.