blob: d8e3cca056186e3316a5135f4fe1d7a7249241f1 [file] [log] [blame]
# name: test/sql/function/test/test_initcap.test
# description: Just simple test to check support of INITCAP function
# group: [string]
query T
SELECT initcap('just cHEck how iNItCap function is works! 22')
----
Just Check How Initcap Function Is Works! 22
query T
SELECT initcap('🦆just cHEck how iNItCap function is works! 22')
----
🦆Just Check How Initcap Function Is Works! 22
query T
SELECT initcap('🦆')
----
🦆
query T
SELECT initcap('')
----
(empty)
query T
SELECT initcap(null)
----
NULL