Skip to content

Commit 2f5bcfe

Browse files
author
Cheng-Yuan-Lai
committed
modify slt file to fit query plan
1 parent dc7d62b commit 2f5bcfe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

datafusion/sqllogictest/test_files/string/string_view.slt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ EXPLAIN SELECT
10281028
FROM test;
10291029
----
10301030
logical_plan
1031-
01)Projection: sha224(test.column1_utf8view) AS c
1031+
01)Projection: sha224(CAST(test.column1_utf8view AS BinaryView))) AS c
10321032
02)--TableScan: test projection=[column1_utf8view]
10331033

10341034
## Ensure no casts for sha256
@@ -1038,7 +1038,7 @@ EXPLAIN SELECT
10381038
FROM test;
10391039
----
10401040
logical_plan
1041-
01)Projection: sha256(test.column1_utf8view) AS c
1041+
01)Projection: sha256(CAST(test.column1_utf8view AS BinaryView)) AS c
10421042
02)--TableScan: test projection=[column1_utf8view]
10431043

10441044
## Ensure no casts for sha384
@@ -1048,7 +1048,7 @@ EXPLAIN SELECT
10481048
FROM test;
10491049
----
10501050
logical_plan
1051-
01)Projection: sha384(test.column1_utf8view) AS c
1051+
01)Projection: sha384(CAST(test.column1_utf8view AS BinaryView)) AS c
10521052
02)--TableScan: test projection=[column1_utf8view]
10531053

10541054
## Ensure no casts for sha512
@@ -1058,7 +1058,7 @@ EXPLAIN SELECT
10581058
FROM test;
10591059
----
10601060
logical_plan
1061-
01)Projection: sha512(test.column1_utf8view) AS c
1061+
01)Projection: sha512(CAST(test.column1_utf8view AS BinaryView)) AS c
10621062
02)--TableScan: test projection=[column1_utf8view]
10631063

10641064
## Ensure no casts for digest

0 commit comments

Comments
 (0)