Sign in
apache
/
ignite
/
master
/
.
/
modules
/
calcite
/
src
/
test
/
sql
/
function
/
string
/
test_strcmp.test
blob: 26fbf759a5c211974db5f94c61c7a57d1ef3ee0a [
file
] [
log
] [
blame
]
# name: test/sql/function/string/test_strcmp.test
# description: Test the STRCMP function
# group: [string]
query I
select
strcmp
(
'abba'
,
'baba'
)
----
1
query I
select
strcmp
(
'abba'
,
'abba'
)
----
0
query I
select
strcmp
(
'abba'
,
'abb'
)
----
-
1