1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
# name: test/sql/function/string/test_mismatches.test
# description: Test mismatches function
# group: [string]
statement ok
SET default_null_order='nulls_first';
statement ok
PRAGMA enable_verification
query I
SELECT mismatches('hallo', 'hallo')
----
0
query I
SELECT mismatches('hello', 'hallo')
----
1
query I
SELECT mismatches('hallo', 'hello')
----
1
query I
SELECT mismatches('aloha', 'hallo')
----
5
query I
SELECT mismatches('hallo', 'aloha')
----
5
query I
SELECT mismatches(NULL, 'hallo')
----
NULL
query I
SELECT mismatches('hello', NULL)
----
NULL
query I
SELECT mismatches(NULL, NULL)
----
NULL
statement ok
CREATE TABLE strings(s VARCHAR)
statement ok
INSERT INTO strings VALUES ('hello'), ('hallo'), ('aloha'), ('world'), (NULL)
# normal counts
query I
SELECT mismatches(s, 'hallo') FROM strings ORDER BY s
----
NULL
5
0
1
4
query I
SELECT mismatches('hallo', s) FROM strings ORDER BY s
----
NULL
5
0
1
4
# special cases
statement error
SELECT mismatches('', '')
----
query I
SELECT mismatches(NULL, s) FROM strings ORDER BY s
----
NULL
NULL
NULL
NULL
NULL
query I
SELECT mismatches(s, NULL) FROM strings ORDER BY s
----
NULL
NULL
NULL
NULL
NULL
# incorrect usages
statement error
SELECT mismatches('hoi', 'hallo')
----
statement error
SELECT mismatches('hallo', 'hoi')
----
statement error
SELECT mismatches('', 'hallo')
----
statement error
SELECT mismatches('hi', '')
----
statement error
SELECT mismatches('', s) FROM strings ORDER BY s
----
statement error
SELECT mismatches(s, '') FROM strings ORDER BY s
----
statement ok
DROP TABLE strings
statement ok
CREATE TABLE strings(s VARCHAR)
statement ok
INSERT INTO strings VALUES ('hello'), ('halo'), (NULL)
# incorrect usage
statement error
SELECT mismatches(s, 'hallo') FROM strings
----
statement error
SELECT mismatches('hallo', s) FROM strings
----
query I
SELECT hamming('hallo', 'hallo')
----
0
query I
SELECT hamming('hello', 'hallo')
----
1
query I
SELECT hamming(s, 'hallo') FROM strings WHERE s = 'hello'
----
1
# Comparing fields from two columns row wise
statement ok
DROP TABLE strings;
statement ok
CREATE TABLE strings(s VARCHAR, t VARCHAR)
statement ok
INSERT INTO strings VALUES ('hello', 'world'), ('hallo', 'ola'), ('hello', ''), (NULL, NULL), ('', ''), ('bora', 'bora')
statement error
SELECT s, t, hamming(s, t) hd FROM strings WHERE length(s) = length(t)
----
statement error
SELECT hamming(s, t) FROM strings
----
|