blob: ea8c54bcb335ebaef9d6791086f40f23d5edbfda [file] [log] [blame]
# name: test/sql/function/string/test_soundex.test
# description: Just simple test to check support of SOUNDEX function.
# group: [string]
query T
SELECT soundex('Robert')
----
R163
query T
SELECT soundex('Rupert')
----
R163
query T
SELECT soundex('Rubin')
----
R150
query T
SELECT soundex('Ashcroft')
----
A261
query T
SELECT soundex(null)
----
NULL