You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hive> create view view_test_substr as select substr('123', 0, 2) as a;
hive> select * from view_test_substr;
12
trino> select * from view_test_substr;
a
---
trino >select substr('123', 1, 2) as a
a
----
12
Trino substr function expects 1 as the start index
The text was updated successfully, but these errors were encountered:
Trino
substr
function expects1
as the start indexThe text was updated successfully, but these errors were encountered: