Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | New test cases for outer joins. Case joinE-32 currently gets an incorrect answer. See forum post 41cc3851d8 for the bug report. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
02b24863e6dc617c9260f79292a96b7c |
User & Date: | drh 2022-05-13 15:31:30 |
Context
2022-05-13
| ||
15:36 | Corrections to the header comment to the new joinE.test script. Add the generator TCL as a comment at the bottom of the script. (check-in: 2f4456f6 user: drh tags: trunk) | |
15:31 | New test cases for outer joins. Case joinE-32 currently gets an incorrect answer. See forum post 41cc3851d8 for the bug report. (check-in: 02b24863 user: drh tags: trunk) | |
14:52 | Improved names for flags on the Expr object: EP_FromJoin becames EP_OuterON and EP_InnerJoin becomes EP_InnerON. (check-in: 1ffea07f user: drh tags: trunk) | |
Changes
Added test/joinE.test.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | # 2022-05-13 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # # This file implements tests for JOINs that use Bloom filters. # # The test case output is (mostly) all generated by PostgreSQL 14. This # test module was created as follows: # # 1. Run a TCL script (included at the bottom of this file) that # generates an input script for "psql" that will run man # diverse tests on joins. # # 2. Run the script from step (1) through psql and collect the # output. # # 3. Make a few minor global search-and-replace operations to convert # the psql output into a form suitable for this test module. # # 4. Add this header, and the script content at the footer. # # A few extra tests that were not generated from postgresql output are # added at the end. # set testdir [file dirname $argv0] source $testdir/tester.tcl db nullvalue - db eval { CREATE TABLE t1(a INT); INSERT INTO t1 VALUES(1),(NULL); CREATE TABLE t2(b INT); INSERT INTO t2 VALUES(2),(NULL); } do_execsql_test joinE-1 { SELECT a, b FROM t1 INNER JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 2 1 - - 2 - - } do_execsql_test joinE-2 { SELECT a, b FROM t1 INNER JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { - 2 - - } do_execsql_test joinE-3 { SELECT a, b FROM t1 INNER JOIN t2 ON a IS NULL ORDER BY coalesce(a,b,3); } { - 2 - - } do_execsql_test joinE-4 { SELECT a, b FROM t1 INNER JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - - - } do_execsql_test joinE-5 { SELECT a, b FROM t1 INNER JOIN t2 ON b IS NULL ORDER BY coalesce(a,b,3); } { 1 - - - } do_execsql_test joinE-6 { SELECT a, b FROM t1 LEFT JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 2 1 - - 2 - - } do_execsql_test joinE-7 { SELECT a, b FROM t1 LEFT JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { - 2 - - } do_execsql_test joinE-8 { SELECT a, b FROM t1 LEFT JOIN t2 ON a IS NULL ORDER BY coalesce(a,b,3); } { 1 - - 2 - - } do_execsql_test joinE-9 { SELECT a, b FROM t1 LEFT JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - - - } do_execsql_test joinE-10 { SELECT a, b FROM t1 LEFT JOIN t2 ON b IS NULL ORDER BY coalesce(a,b,3); } { 1 - - - } do_execsql_test joinE-11 { SELECT a, b FROM t1 RIGHT JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 2 1 - - 2 - - } do_execsql_test joinE-12 { SELECT a, b FROM t1 RIGHT JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { - 2 - - } do_execsql_test joinE-13 { SELECT a, b FROM t1 RIGHT JOIN t2 ON a IS NULL ORDER BY coalesce(a,b,3); } { - 2 - - } do_execsql_test joinE-14 { SELECT a, b FROM t1 RIGHT JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - - - } do_execsql_test joinE-15 { SELECT a, b FROM t1 RIGHT JOIN t2 ON b IS NULL ORDER BY coalesce(a,b,3); } { 1 - - 2 - - } do_execsql_test joinE-16 { SELECT a, b FROM t1 FULL JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 2 1 - - 2 - - } do_execsql_test joinE-17 { SELECT a, b FROM t1 FULL JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { - 2 - - } # PG-14 is unable to perform this join. It says: FULL JOIN is only # supported with merge-joinable or hash-joinable join conditions # # do_execsql_test joinE-18 { # SELECT a, b # FROM t1 FULL JOIN t2 ON a IS NULL # ORDER BY coalesce(a,b,3); # } { # } do_execsql_test joinE-19 { SELECT a, b FROM t1 FULL JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - - - } # PG-14 is unable to perform this join. It says: FULL JOIN is only # supported with merge-joinable or hash-joinable join conditions # # do_execsql_test joinE-20 { # SELECT a, b # FROM t1 FULL JOIN t2 ON b IS NULL # ORDER BY coalesce(a,b,3); # } { # } db eval { DELETE FROM t1; INSERT INTO t1 VALUES(1); DELETE FROM t2; INSERT INTO t2 VALUES(NULL); } do_execsql_test joinE-21 { SELECT a, b FROM t1 INNER JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-22 { SELECT a, b FROM t1 INNER JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { } do_execsql_test joinE-23 { SELECT a, b FROM t1 INNER JOIN t2 ON a IS NULL ORDER BY coalesce(a,b,3); } { } do_execsql_test joinE-24 { SELECT a, b FROM t1 INNER JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-25 { SELECT a, b FROM t1 INNER JOIN t2 ON b IS NULL ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-26 { SELECT a, b FROM t1 LEFT JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-27 { SELECT a, b FROM t1 LEFT JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { } do_execsql_test joinE-28 { SELECT a, b FROM t1 LEFT JOIN t2 ON a IS NULL ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-29 { SELECT a, b FROM t1 LEFT JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-30 { SELECT a, b FROM t1 LEFT JOIN t2 ON b IS NULL ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-31 { SELECT a, b FROM t1 RIGHT JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-32 { SELECT a, b FROM t1 RIGHT JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { } do_execsql_test joinE-33 { SELECT a, b FROM t1 RIGHT JOIN t2 ON a IS NULL ORDER BY coalesce(a,b,3); } { - - } do_execsql_test joinE-34 { SELECT a, b FROM t1 RIGHT JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-35 { SELECT a, b FROM t1 RIGHT JOIN t2 ON b IS NULL ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-36 { SELECT a, b FROM t1 FULL JOIN t2 ON true ORDER BY coalesce(a,b,3); } { 1 - } do_execsql_test joinE-37 { SELECT a, b FROM t1 FULL JOIN t2 ON true WHERE a IS NULL ORDER BY coalesce(a,b,3); } { } # PG-14 is unable # # do_execsql_test joinE-38 { # SELECT a, b # FROM t1 FULL JOIN t2 ON a IS NULL # ORDER BY coalesce(a,b,3); # } { # } do_execsql_test joinE-39 { SELECT a, b FROM t1 FULL JOIN t2 ON true WHERE b IS NULL ORDER BY coalesce(a,b,3); } { 1 - } # PG-14 is unable # do_execsql_test joinE-40 { # SELECT a, b # FROM t1 FULL JOIN t2 ON b IS NULL # ORDER BY coalesce(a,b,3); # } { # } finish_test |