File tree 1 file changed +4
-4
lines changed
datafusion/sqllogictest/test_files/string
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1028,7 +1028,7 @@ EXPLAIN SELECT
1028
1028
FROM test;
1029
1029
----
1030
1030
logical_plan
1031
- 01)Projection: sha224(test.column1_utf8view) AS c
1031
+ 01)Projection: sha224(CAST( test.column1_utf8view AS BinaryView)) ) AS c
1032
1032
02)--TableScan: test projection=[column1_utf8view]
1033
1033
1034
1034
## Ensure no casts for sha256
@@ -1038,7 +1038,7 @@ EXPLAIN SELECT
1038
1038
FROM test;
1039
1039
----
1040
1040
logical_plan
1041
- 01)Projection: sha256(test.column1_utf8view) AS c
1041
+ 01)Projection: sha256(CAST( test.column1_utf8view AS BinaryView) ) AS c
1042
1042
02)--TableScan: test projection=[column1_utf8view]
1043
1043
1044
1044
## Ensure no casts for sha384
@@ -1048,7 +1048,7 @@ EXPLAIN SELECT
1048
1048
FROM test;
1049
1049
----
1050
1050
logical_plan
1051
- 01)Projection: sha384(test.column1_utf8view) AS c
1051
+ 01)Projection: sha384(CAST( test.column1_utf8view AS BinaryView) ) AS c
1052
1052
02)--TableScan: test projection=[column1_utf8view]
1053
1053
1054
1054
## Ensure no casts for sha512
@@ -1058,7 +1058,7 @@ EXPLAIN SELECT
1058
1058
FROM test;
1059
1059
----
1060
1060
logical_plan
1061
- 01)Projection: sha512(test.column1_utf8view) AS c
1061
+ 01)Projection: sha512(CAST( test.column1_utf8view AS BinaryView) ) AS c
1062
1062
02)--TableScan: test projection=[column1_utf8view]
1063
1063
1064
1064
## Ensure no casts for digest
You can’t perform that action at this time.
0 commit comments