File: transitive1.test.lua

package info (click to toggle)
tarantool 2.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 85,364 kB
  • sloc: ansic: 513,760; cpp: 69,489; sh: 25,650; python: 19,190; perl: 14,973; makefile: 4,173; yacc: 1,329; sql: 1,074; pascal: 620; ruby: 190; awk: 18; lisp: 7
file content (524 lines) | stat: -rwxr-xr-x 41,799 bytes parent folder | download | duplicates (3)
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
#!/usr/bin/env tarantool
test = require("sqltester")
test:plan(26)

--!./tcltestrunner.lua
-- 2013 April 17
--
-- 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 regression tests for sql library.  The
-- focus of this script is testing of transitive WHERE clause constraints
--
-- ["set","testdir",[["file","dirname",["argv0"]]]]
-- ["source",[["testdir"],"\/tester.tcl"]]
test:do_execsql_test(
    "transitive1-100",
    [[
        CREATE TABLE t1(id  INT primary key, a TEXT, b TEXT, c TEXT COLLATE "unicode_ci");
        INSERT INTO t1 VALUES(1, 'abc','abc','Abc');
        INSERT INTO t1 VALUES(2, 'def','def','def');
        INSERT INTO t1 VALUES(3, 'ghi','ghi','GHI');
        CREATE INDEX t1a1 ON t1(a);
        CREATE INDEX t1a2 ON t1(a COLLATE "unicode_ci");

        SELECT a,b,c FROM t1 WHERE a=b AND c=b AND c='DEF';
    ]], {
        -- <transitive1-100>
        "def", "def", "def"
        -- </transitive1-100>
    })

test:do_execsql_test(
    "transitive1-110",
    [[
        SELECT a,b,c FROM t1 WHERE a=b AND c=b AND c>='DEF' ORDER BY +a;
    ]], {
        -- <transitive1-110>
        "def", "def", "def", "ghi", "ghi", "GHI"
        -- </transitive1-110>
    })

test:do_execsql_test(
    "transitive1-120",
    [[
        SELECT a,b,c FROM t1 WHERE a=b AND c=b AND c<='DEF' ORDER BY +a;
    ]], {
        -- <transitive1-120>
        "abc", "abc", "Abc", "def", "def", "def"
        -- </transitive1-120>
    })

test:do_execsql_test(
    "transitive1-200",
    [[
        CREATE TABLE t2(id  INT primary key, a INTEGER, b INTEGER, c TEXT);
        INSERT INTO t2 VALUES(1, 100,100,'100');
        INSERT INTO t2 VALUES(2, 20,20,'20');
        INSERT INTO t2 VALUES(3, 3,3,'3');

        SELECT a,b,c FROM t2 WHERE a=b AND c=b AND c=20;
    ]], {
        -- <transitive1-200>
        20, 20, "20"
        -- </transitive1-200>
    })

test:do_execsql_test(
    "transitive1-210",
    [[
        SELECT a,b,c FROM t2 WHERE a=b AND c=b AND c>='20' ORDER BY +a;
    ]], {
        -- <transitive1-210>
        3, 3, "3", 20, 20, "20"
        -- </transitive1-210>
    })

test:do_execsql_test(
    "transitive1-220",
    [[
        SELECT a,b,c FROM t2 WHERE a=b AND c=b AND c<='20' ORDER BY +a;
    ]], {
        -- <transitive1-220>
        20, 20, "20", 100, 100, "100"
        -- </transitive1-220>
    })

-- Test cases for ticket [[d805526eae253103] 2013-07-08
-- "Incorrect join result or assertion fault due to transitive constraints"
--
test:do_execsql_test(
    "transitive1-300",
    [[
        CREATE TABLE t301(w INTEGER PRIMARY KEY, x INT );
        CREATE TABLE t302(y INTEGER PRIMARY KEY, z INT );
        INSERT INTO t301 VALUES(1,2),(3,4),(5,6);
        INSERT INTO t302 VALUES(1,3),(3,6),(5,7);
        SELECT *
          FROM t301 CROSS JOIN t302
         WHERE w=y AND y IS NOT NULL
         ORDER BY +w;
    ]], {
        -- <transitive1-300>
        1, 2, 1, 3, 3, 4, 3, 6, 5, 6, 5, 7
        -- </transitive1-300>
    })

test:do_execsql_test(
    "transitive1-301",
    [[
        SELECT *
          FROM t301 CROSS JOIN t302
         WHERE w=y AND y IS NOT NULL
         ORDER BY w;
    ]], {
        -- <transitive1-301>
        1, 2, 1, 3, 3, 4, 3, 6, 5, 6, 5, 7
        -- </transitive1-301>
    })

test:do_execsql_test(
    "transitive1-310",
    [[
        SELECT *
          FROM t301 CROSS JOIN t302 ON w=y
         WHERE y>1
         ORDER BY +w
    ]], {
        -- <transitive1-310>
        3, 4, 3, 6, 5, 6, 5, 7
        -- </transitive1-310>
    })

test:do_execsql_test(
    "transitive1-311",
    [[
        SELECT *
          FROM t301 CROSS JOIN t302 ON w=y
         WHERE y>1
         ORDER BY w
    ]], {
        -- <transitive1-311>
        3, 4, 3, 6, 5, 6, 5, 7
        -- </transitive1-311>
    })

test:do_execsql_test(
    "transitive1-312",
    [[
        SELECT *
          FROM t301 CROSS JOIN t302 ON w=y
         WHERE y>1
         ORDER BY w DESC
    ]], {
        -- <transitive1-312>
        5, 6, 5, 7, 3, 4, 3, 6
        -- </transitive1-312>
    })

test:do_execsql_test(
    "transitive1-320",
    [[
        SELECT *
          FROM t301 CROSS JOIN t302 ON w=y
         WHERE y BETWEEN 2 AND 4;
    ]], {
        -- <transitive1-320>
        3, 4, 3, 6
        -- </transitive1-320>
    })

test:do_execsql_test(
    "transitive1-331",
    [[
        SELECT *
          FROM t301 CROSS JOIN t302 ON w=y
         WHERE y BETWEEN 1 AND 4
         ORDER BY w;
    ]], {
        -- <transitive1-331>
        1, 2, 1, 3, 3, 4, 3, 6
        -- </transitive1-331>
    })

test:do_execsql_test(
    "transitive1-332",
    [[
        SELECT *
          FROM t301 CROSS JOIN t302 ON w=y
         WHERE y BETWEEN 1 AND 4
         ORDER BY w DESC;
    ]], {
        -- <transitive1-332>
        3, 4, 3, 6, 1, 2, 1, 3
        -- </transitive1-332>
    })

-- Ticket [c620261b5b5dc] circa 2013-10-28.
-- Make sure constraints are not used with LEFT JOINs.
--
-- The next case is from the ticket report.  It outputs no rows in 3.8.1
-- prior to the bug-fix.
--
test:do_execsql_test(
    "transitive1-400",
    [[
        CREATE TABLE t401(a  INT PRIMARY KEY);
        CREATE TABLE t402(b  INT PRIMARY KEY);
        CREATE TABLE t403(c INTEGER PRIMARY KEY);
        INSERT INTO t401 VALUES(1);
        INSERT INTO t403 VALUES(1);
        SELECT '1-row' FROM t401 LEFT JOIN t402 ON b=a JOIN t403 ON c=a;
    ]], {
        -- <transitive1-400>
        "1-row"
        -- </transitive1-400>
    })

-- The following is a script distilled from the XBMC project where the
-- bug was originally encountered.  The correct answer is a single row
-- of output.  Before the bug was fixed, zero rows were generated.

test:do_execsql_test(
    "transitive1-410",
    [[
        CREATE TABLE bookmark ( idBookmark integer primary key, idFile integer, timeInSeconds NUMBER, totalTimeInSeconds NUMBER, thumbNailImage text, player text, playerState text, type integer);
        CREATE TABLE path ( idPath integer primary key, strPath text, strContent text, strScraper text, strHash text, scanRecursive integer, useFolderNames  INT , strSettings text, noUpdate  INT , exclude  INT , dateAdded text);
        INSERT INTO path VALUES(1,'/tmp/tvshows/','tvshows','metadata.tvdb.com','989B1CE5680A14F5F86123F751169B49',0,0,'<settings><setting id="absolutenumber" value="false" /><setting id="dvdorder" value="false" /><setting id="fanart" value="true" /><setting id="language" value="en" /></settings>',0,0,NULL);
        INSERT INTO path VALUES(2,'/tmp/tvshows/The.Big.Bang.Theory/','','','85E1DAAB2F5FF6EAE8AEDF1B5C882D1E',NULL,NULL,NULL,NULL,NULL,'2013-10-23 18:58:43');
        CREATE TABLE files ( idFile integer primary key, idPath integer, strFilename text, playCount integer, lastPlayed text, dateAdded text);
        INSERT INTO files VALUES(1,2,'The.Big.Bang.Theory.S01E01.WEB-DL.AAC2.0.H264.mkv',NULL,NULL,'2013-10-23 18:57:36');
        CREATE TABLE tvshow ( idShow integer primary key,c00 text,c01 text,c02 text,c03 text,c04 text,c05 text,c06 text,c07 text,c08 text,c09 text,c10 text,c11 text,c12 text,c13 text,c14 text,c15 text,c16 text,c17 text,c18 text,c19 text,c20 text,c21 text,c22 text,c23 text);
        INSERT INTO tvshow VALUES(1,'The Big Bang Theory','Leonard Hofstadter and Sheldon Cooper are brilliant physicists, the kind of "beautiful minds" that understand how the universe works. But none of that genius helps them interact with people, especially women. All this begins to change when a free-spirited beauty named Penny moves in next door. Sheldon, Leonard''s roommate, is quite content spending his nights playing Klingon Boggle with their socially dysfunctional friends, fellow CalTech scientists Howard Wolowitz and Raj Koothrappali. However, Leonard sees in Penny a whole new universe of possibilities... including love.','','','9.200000','2007-09-24','<thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g13.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g23.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g18.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g17.jpg</thumb><thumb aspect="banner">http://
        thetvdb.com/banners/graphical/80379-g6.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g5.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g2.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g11.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g12.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g19.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g3.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g4.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g15.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g22.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g7.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g10.jpg</thumb><thumb
        aspect="banner">http://thetvdb.com/banners/graphical/80379-g24.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g8.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g9.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g14.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g16.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/graphical/80379-g21.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/text/80379-4.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/text/80379-2.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/text/80379-3.jpg</thumb><thumb aspect="banner">http://thetvdb.com/banners/text/80379-5.jpg</thumb><thumb aspect="poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6-8.jpg</thumb><thumb aspect="poster" type="season" season="0">http://thetvdb.com/banners/seasons/80379-0-4.jpg</thumb><thumb aspect="poster" type="season"
        season="1">http://thetvdb.com/banners/seasons/80379-1-12.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3-9.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-11.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-9.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4-8.jpg</thumb><thumb aspect="poster" type="season" season="7">http://thetvdb.com/banners/seasons/80379-7-3.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3-4.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4-5.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-9.jpg</thumb><thumb aspect="poster" type="season" season="0">http://thetvdb.com/banners/seasons/80379-0-2.jpg</thumb><thumb aspect="
        poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6-6.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4-4.jpg</thumb><thumb aspect="poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6-2.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1-9.jpg</thumb><thumb aspect="poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6-4.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4-2.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-7.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-10.jpg</
        thumb><thumb aspect="poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6-5.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1-5.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-4.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4.jpg</thumb><thumb aspect="poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6-3.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3-6.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2.jpg</thumb><thumb aspect="poster" type="season" season="7">http://thetvdb.com/banners/seasons/80379-7.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-
        1-7.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-2.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-3.jpg</thumb><thumb aspect="poster" type="season" season="7">http://thetvdb.com/banners/seasons/80379-7-2.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1-2.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-5.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4-3.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-5.jpg</thumb><thumb aspect="poster" type="season" season="0">http://thetvdb.com/banners/seasons/80379-0.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3-5.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/
        seasons/80379-1-6.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-3.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-8.jpg</thumb><thumb aspect="poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6-7.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-8.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4-7.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-6.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3-8.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1-11.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1-10.jpg</thumb><thumb aspect="poster" type="season" season="1">http://
        thetvdb.com/banners/seasons/80379-1-8.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3-7.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-4.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1-3.jpg</thumb><thumb aspect="poster" type="season" season="1">http://thetvdb.com/banners/seasons/80379-1-4.jpg</thumb><thumb aspect="poster" type="season" season="3">http://thetvdb.com/banners/seasons/80379-3-3.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-7.jpg</thumb><thumb aspect="poster" type="season" season="6">http://thetvdb.com/banners/seasons/80379-6.jpg</thumb><thumb aspect="poster" type="season" season="2">http://thetvdb.com/banners/seasons/80379-2-2.jpg</thumb><thumb aspect="poster" type="season" season="5">http://thetvdb.com/banners/seasons/80379-5-6.jpg</thumb><thumb aspect="poster" type="season"
        season="3">http://thetvdb.com/banners/seasons/80379-3-2.jpg</thumb><thumb aspect="poster" type="season" season="4">http://thetvdb.com/banners/seasons/80379-4-6.jpg</thumb><thumb aspect="banner" type="season" season="5">http://thetvdb.com/banners/seasonswide/80379-5.jpg</thumb><thumb aspect="banner" type="season" season="3">http://thetvdb.com/banners/seasonswide/80379-3-2.jpg</thumb><thumb aspect="banner" type="season" season="1">http://thetvdb.com/banners/seasonswide/80379-1-2.jpg</thumb><thumb aspect="banner" type="season" season="2">http://thetvdb.com/banners/seasonswide/80379-2-2.jpg</thumb><thumb aspect="banner" type="season" season="4">http://thetvdb.com/banners/seasonswide/80379-4-2.jpg</thumb><thumb aspect="banner" type="season" season="0">http://thetvdb.com/banners/seasonswide/80379-0.jpg</thumb><thumb aspect="banner" type="season" season="0">http://thetvdb.com/banners/seasonswide/80379-0-2.jpg</thumb><thumb aspect="banner" type="season" season="1">http://thetvdb.com/banners/seasonswide/80379-1.jpg</
        thumb><thumb aspect="banner" type="season" season="2">http://thetvdb.com/banners/seasonswide/80379-2.jpg</thumb><thumb aspect="banner" type="season" season="4">http://thetvdb.com/banners/seasonswide/80379-4.jpg</thumb><thumb aspect="banner" type="season" season="3">http://thetvdb.com/banners/seasonswide/80379-3.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-22.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-18.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-13.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-10.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-16.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-1.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-9.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-2.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-19.jpg</
        thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-8.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-4.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-20.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-23.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-7.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-3.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-12.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-11.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-15.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-21.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-14.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-17.jpg</thumb><thumb aspect="poster">http://thetvdb.com/banners/posters/80379-6.jpg</thumb><thumb
        aspect="poster">http://thetvdb.com/banners/posters/80379-5.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-22.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-18.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-13.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-10.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-16.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-1.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-9.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-2.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-19.jpg</thumb><thumb aspect="
        poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-8.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-4.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-20.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-23.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-7.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-3.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-12.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-11.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-15.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-21.jpg</
        thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-14.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-17.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-6.jpg</thumb><thumb aspect="poster" type="season" season="-1">http://thetvdb.com/banners/posters/80379-5.jpg</thumb>','','Comedy','','<episodeguide><url cache="80379-en.xml">http://thetvdb.com/api/1D62F2F90030C444/series/80379/all/en.zip</url></episodeguide>','<fanart url="http://thetvdb.com/banners/"><thumb dim="1920x1080" colors="|192,185,169|19,20,25|57,70,89|" preview="_cache/fanart/original/80379-2.jpg">fanart/original/80379-2.jpg</thumb><thumb dim="1920x1080" colors="|94,28,16|194,18,38|0,0,8|" preview="_cache/fanart/original/80379-34.jpg">fanart/original/80379-34.jpg</thumb><thumb dim="1280x720" colors="|254,157,210|11,12,7|191,152,111|" preview="_cache/fanart/original/80379-4.jpg">fanart/original/80379-
        4.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-42.jpg">fanart/original/80379-42.jpg</thumb><thumb dim="1920x1080" colors="|236,187,155|136,136,128|254,254,252|" preview="_cache/fanart/original/80379-37.jpg">fanart/original/80379-37.jpg</thumb><thumb dim="1920x1080" colors="|112,102,152|116,109,116|235,152,146|" preview="_cache/fanart/original/80379-14.jpg">fanart/original/80379-14.jpg</thumb><thumb dim="1920x1080" colors="|150,158,161|174,75,121|150,98,58|" preview="_cache/fanart/original/80379-16.jpg">fanart/original/80379-16.jpg</thumb><thumb dim="1280x720" colors="|224,200,176|11,1,28|164,96,0|" preview="_cache/fanart/original/80379-1.jpg">fanart/original/80379-1.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-35.jpg">fanart/original/80379-35.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-40.jpg">fanart/original/80379-40.jpg</thumb><thumb dim="1920x1080" colors="|255,255,255|30,19,13|155,112,70|"
        preview="_cache/fanart/original/80379-31.jpg">fanart/original/80379-31.jpg</thumb><thumb dim="1920x1080" colors="|241,195,172|84,54,106|254,221,206|" preview="_cache/fanart/original/80379-29.jpg">fanart/original/80379-29.jpg</thumb><thumb dim="1280x720" colors="|197,167,175|219,29,39|244,208,192|" preview="_cache/fanart/original/80379-11.jpg">fanart/original/80379-11.jpg</thumb><thumb dim="1280x720" colors="|195,129,97|244,192,168|219,148,118|" preview="_cache/fanart/original/80379-24.jpg">fanart/original/80379-24.jpg</thumb><thumb dim="1920x1080" colors="|14,10,11|255,255,255|175,167,164|" preview="_cache/fanart/original/80379-30.jpg">fanart/original/80379-30.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-19.jpg">fanart/original/80379-19.jpg</thumb><thumb dim="1920x1080" colors="|246,199,69|98,55,38|161,127,82|" preview="_cache/fanart/original/80379-9.jpg">fanart/original/80379-9.jpg</thumb><thumb dim="1280x720" colors="|129,22,14|48,50,39|223,182,64|" preview="_cache/
        fanart/original/80379-13.jpg">fanart/original/80379-13.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-45.jpg">fanart/original/80379-45.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-33.jpg">fanart/original/80379-33.jpg</thumb><thumb dim="1280x720" colors="|103,77,60|224,180,153|129,100,84|" preview="_cache/fanart/original/80379-10.jpg">fanart/original/80379-10.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-23.jpg">fanart/original/80379-23.jpg</thumb><thumb dim="1280x720" colors="|219,29,39|0,4,10|88,117,135|" preview="_cache/fanart/original/80379-12.jpg">fanart/original/80379-12.jpg</thumb><thumb dim="1920x1080" colors="|226,209,165|51,18,9|89,54,24|" preview="_cache/fanart/original/80379-5.jpg">fanart/original/80379-5.jpg</thumb><thumb dim="1280x720" colors="" preview="_cache/fanart/original/80379-26.jpg">fanart/original/80379-26.jpg</thumb><thumb dim="1280x720" colors="|249,251,229|126,47,53|251,226,
        107|" preview="_cache/fanart/original/80379-27.jpg">fanart/original/80379-27.jpg</thumb><thumb dim="1920x1080" colors="|233,218,65|30,27,46|173,53,18|" preview="_cache/fanart/original/80379-32.jpg">fanart/original/80379-32.jpg</thumb><thumb dim="1280x720" colors="|248,248,248|64,54,78|188,193,196|" preview="_cache/fanart/original/80379-3.jpg">fanart/original/80379-3.jpg</thumb><thumb dim="1280x720" colors="" preview="_cache/fanart/original/80379-25.jpg">fanart/original/80379-25.jpg</thumb><thumb dim="1280x720" colors="|159,150,133|59,39,32|168,147,104|" preview="_cache/fanart/original/80379-7.jpg">fanart/original/80379-7.jpg</thumb><thumb dim="1920x1080" colors="|221,191,157|11,7,6|237,146,102|" preview="_cache/fanart/original/80379-21.jpg">fanart/original/80379-21.jpg</thumb><thumb dim="1280x720" colors="" preview="_cache/fanart/original/80379-28.jpg">fanart/original/80379-28.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-36.jpg">fanart/original/80379-36.jpg</thumb><thumb
        dim="1920x1080" colors="|253,237,186|33,25,22|245,144,38|" preview="_cache/fanart/original/80379-38.jpg">fanart/original/80379-38.jpg</thumb><thumb dim="1920x1080" colors="|174,111,68|243,115,50|252,226,45|" preview="_cache/fanart/original/80379-20.jpg">fanart/original/80379-20.jpg</thumb><thumb dim="1920x1080" colors="|63,56,123|87,59,47|63,56,123|" preview="_cache/fanart/original/80379-17.jpg">fanart/original/80379-17.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-43.jpg">fanart/original/80379-43.jpg</thumb><thumb dim="1280x720" colors="|69,68,161|142,118,142|222,191,137|" preview="_cache/fanart/original/80379-22.jpg">fanart/original/80379-22.jpg</thumb><thumb dim="1280x720" colors="|1,108,206|242,209,192|250,197,163|" preview="_cache/fanart/original/80379-15.jpg">fanart/original/80379-15.jpg</thumb><thumb dim="1280x720" colors="|239,229,237|0,0,0|167,136,115|" preview="_cache/fanart/original/80379-18.jpg">fanart/original/80379-18.jpg</thumb><thumb dim="1280x720" colors=""
        preview="_cache/fanart/original/80379-6.jpg">fanart/original/80379-6.jpg</thumb><thumb dim="1280x720" colors="" preview="_cache/fanart/original/80379-8.jpg">fanart/original/80379-8.jpg</thumb><thumb dim="1280x720" colors="" preview="_cache/fanart/original/80379-41.jpg">fanart/original/80379-41.jpg</thumb><thumb dim="1920x1080" colors="" preview="_cache/fanart/original/80379-44.jpg">fanart/original/80379-44.jpg</thumb><thumb dim="1280x720" colors="" preview="_cache/fanart/original/80379-39.jpg">fanart/original/80379-39.jpg</thumb></fanart>','80379','TV-PG','CBS','','/tmp/tvshows/The.Big.Bang.Theory/','1',NULL,NULL,NULL,NULL,NULL,NULL);
        CREATE TABLE episode ( idEpisode integer primary key, idFile integer,c00 text,c01 text,c02 text,c03 text,c04 text,c05 text,c06 text,c07 text,c08 text,c09 text,c10 text,c11 text,c12 varchar(24),c13 varchar(24),c14 text,c15 text,c16 text,c17 varchar(24),c18 text,c19 text,c20 text,c21 text,c22 text,c23 text, idShow integer);
        INSERT INTO episode VALUES(1,1,'Pilot','Brilliant physicist roommates Leonard and Sheldon meet their new neighbor Penny, who begins showing them that as much as they know about science, they know little about actual living.','','7.700000','Chuck Lorre / Bill Prady','2007-09-24','<thumb>http://thetvdb.com/banners/episodes/80379/332484.jpg</thumb>','',NULL,'1800','James Burrows','','1','1','','-1','-1','-1','/tmp/tvshows/The.Big.Bang.Theory/The.Big.Bang.Theory.S01E01.WEB-DL.AAC2.0.H264.mkv','2','332484',NULL,NULL,NULL,1);
        CREATE TABLE tvshowlinkpath (idShow integer, idPath integer, PRIMARY KEY(idShow, idPath));
        INSERT INTO tvshowlinkpath VALUES(1,2);
        CREATE TABLE seasons ( idSeason integer primary key, idShow integer, season integer);
        INSERT INTO seasons VALUES(1,1,-1);
        INSERT INTO seasons VALUES(2,1,0);
        INSERT INTO seasons VALUES(3,1,1);
        INSERT INTO seasons VALUES(4,1,2);
        INSERT INTO seasons VALUES(5,1,3);
        INSERT INTO seasons VALUES(6,1,4);
        INSERT INTO seasons VALUES(7,1,5);
        INSERT INTO seasons VALUES(8,1,6);
        INSERT INTO seasons VALUES(9,1,7);
        CREATE TABLE art(art_id INTEGER PRIMARY KEY, media_id INTEGER, media_type TEXT, type TEXT, url TEXT);
        INSERT INTO art VALUES(1,1,'actor','thumb','http://thetvdb.com/banners/actors/73597.jpg');
        INSERT INTO art VALUES(2,2,'actor','thumb','http://thetvdb.com/banners/actors/73596.jpg');
        INSERT INTO art VALUES(3,3,'actor','thumb','http://thetvdb.com/banners/actors/73595.jpg');
        INSERT INTO art VALUES(4,4,'actor','thumb','http://thetvdb.com/banners/actors/73599.jpg');
        INSERT INTO art VALUES(5,5,'actor','thumb','http://thetvdb.com/banners/actors/73598.jpg');
        INSERT INTO art VALUES(6,6,'actor','thumb','http://thetvdb.com/banners/actors/283158.jpg');
        INSERT INTO art VALUES(7,7,'actor','thumb','http://thetvdb.com/banners/actors/283157.jpg');
        INSERT INTO art VALUES(8,8,'actor','thumb','http://thetvdb.com/banners/actors/91271.jpg');
        INSERT INTO art VALUES(9,9,'actor','thumb','http://thetvdb.com/banners/actors/294178.jpg');
        INSERT INTO art VALUES(10,10,'actor','thumb','http://thetvdb.com/banners/actors/283159.jpg');
        INSERT INTO art VALUES(11,1,'tvshow','banner','http://thetvdb.com/banners/graphical/80379-g13.jpg');
        INSERT INTO art VALUES(12,1,'tvshow','fanart','http://thetvdb.com/banners/fanart/original/80379-2.jpg');
        INSERT INTO art VALUES(13,1,'tvshow','poster','http://thetvdb.com/banners/posters/80379-22.jpg');
        INSERT INTO art VALUES(14,1,'season','poster','http://thetvdb.com/banners/posters/80379-22.jpg');
        INSERT INTO art VALUES(15,2,'season','banner','http://thetvdb.com/banners/seasonswide/80379-0.jpg');
        INSERT INTO art VALUES(16,2,'season','poster','http://thetvdb.com/banners/seasons/80379-0-4.jpg');
        INSERT INTO art VALUES(17,3,'season','banner','http://thetvdb.com/banners/seasonswide/80379-1-2.jpg');
        INSERT INTO art VALUES(18,3,'season','poster','http://thetvdb.com/banners/seasons/80379-1-12.jpg');
        INSERT INTO art VALUES(19,4,'season','banner','http://thetvdb.com/banners/seasonswide/80379-2-2.jpg');
        INSERT INTO art VALUES(20,4,'season','poster','http://thetvdb.com/banners/seasons/80379-2-11.jpg');
        INSERT INTO art VALUES(21,5,'season','banner','http://thetvdb.com/banners/seasonswide/80379-3-2.jpg');
        INSERT INTO art VALUES(22,5,'season','poster','http://thetvdb.com/banners/seasons/80379-3-9.jpg');
        INSERT INTO art VALUES(23,6,'season','banner','http://thetvdb.com/banners/seasonswide/80379-4-2.jpg');
        INSERT INTO art VALUES(24,6,'season','poster','http://thetvdb.com/banners/seasons/80379-4-8.jpg');
        INSERT INTO art VALUES(25,7,'season','banner','http://thetvdb.com/banners/seasonswide/80379-5.jpg');
        INSERT INTO art VALUES(26,7,'season','poster','http://thetvdb.com/banners/seasons/80379-5-9.jpg');
        INSERT INTO art VALUES(27,8,'season','poster','http://thetvdb.com/banners/seasons/80379-6-8.jpg');
        INSERT INTO art VALUES(28,9,'season','poster','http://thetvdb.com/banners/seasons/80379-7-3.jpg');
        INSERT INTO art VALUES(29,1,'episode','thumb','http://thetvdb.com/banners/episodes/80379/332484.jpg');
        CREATE INDEX ix_bookmark ON bookmark (idFile, type);
        CREATE INDEX ix_path ON path ( strPath );
        CREATE INDEX ix_files ON files ( idPath, strFilename );
        CREATE UNIQUE INDEX ix_episode_file_1 on episode (idEpisode, idFile);
        CREATE UNIQUE INDEX id_episode_file_2 on episode (idFile, idEpisode);
        CREATE INDEX ix_episode_season_episode on episode (c12, c13);
        CREATE INDEX ix_episode_bookmark on episode (c17);
        CREATE INDEX ix_episode_show1 on episode(idEpisode,idShow);
        CREATE INDEX ix_episode_show2 on episode(idShow,idEpisode);
        CREATE UNIQUE INDEX ix_tvshowlinkpath_1 ON tvshowlinkpath ( idShow, idPath );
        CREATE UNIQUE INDEX ix_tvshowlinkpath_2 ON tvshowlinkpath ( idPath, idShow );
        CREATE INDEX ixEpisodeBasePath ON episode ( c19 );
        CREATE INDEX ixTVShowBasePath on tvshow ( c17 );
        CREATE INDEX ix_seasons ON seasons (idShow, season);
        CREATE INDEX ix_art ON art(media_id, media_type, type);
        CREATE VIEW episodeview
        AS
          SELECT episode.*,
                 files.strfilename           AS strFileName,
                 path.strpath                AS strPath,
                 files.playcount             AS playCount,
                 files.lastplayed            AS lastPlayed,
                 files.dateadded             AS dateAdded,
                 tvshow.c00                  AS strTitle,
                 tvshow.c14                  AS strStudio,
                 tvshow.c05                  AS premiered,
                 tvshow.c13                  AS mpaa,
                 tvshow.c16                  AS strShowPath,
                 bookmark.timeinseconds      AS resumeTimeInSeconds,
                 bookmark.totaltimeinseconds AS totalTimeInSeconds,
                 seasons.idseason            AS idSeason
          FROM   episode
                 JOIN files
                   ON files.idfile = episode.idfile
                 JOIN tvshow
                   ON tvshow.idshow = episode.idshow
                 LEFT JOIN seasons
                        ON seasons.idshow = episode.idshow
                           AND seasons.season = CAST(episode.c12 AS INTEGER)
                 JOIN path
                   ON files.idpath = path.idpath
                 LEFT JOIN bookmark
                        ON bookmark.idfile = episode.idfile
                           AND bookmark.type = 1; 
        CREATE VIEW tvshowview
        AS
          SELECT tvshow.*,
                 path.strpath                              AS strPath,
                 path.dateadded                            AS dateAdded,
                 Max(files.lastplayed)                     AS lastPlayed,
                 NULLIF(Count(episode.c12), 0)             AS totalCount,
                 Count(files.playcount)                    AS watchedcount,
                 NULLIF(Count(DISTINCT( episode.c12 )), 0) AS totalSeasons
          FROM   tvshow
                 LEFT JOIN tvshowlinkpath
                        ON tvshowlinkpath.idshow = tvshow.idshow
                 LEFT JOIN path
                        ON path.idpath = tvshowlinkpath.idpath
                 LEFT JOIN episode
                        ON episode.idshow = tvshow.idshow
                 LEFT JOIN files
                        ON files.idfile = episode.idfile
          GROUP  BY tvshow.idshow; 
        SELECT
          episodeview.c12,
          path.strPath,
          tvshowview.c00,
          tvshowview.c01,
          tvshowview.c05,
          tvshowview.c08,
          tvshowview.c14,
          tvshowview.c13,
          seasons.idSeason,
          count(1),
          count(files.playCount)
        FROM episodeview
            JOIN tvshowview ON tvshowview.idShow = episodeview.idShow
            JOIN seasons ON (seasons.idShow = tvshowview.idShow
                             AND seasons.season = CAST(episodeview.c12 AS INTEGER))
            JOIN files ON files.idFile = episodeview.idFile
            JOIN tvshowlinkpath ON tvshowlinkpath.idShow = tvshowview.idShow
            JOIN path ON path.idPath = tvshowlinkpath.idPath
        WHERE tvshowview.idShow = 1
        GROUP BY episodeview.c12;
    ]], {
        -- <transitive1-410>
        "1", "/tmp/tvshows/The.Big.Bang.Theory/", "The Big Bang Theory", [[Leonard Hofstadter and Sheldon Cooper are brilliant physicists, the kind of "beautiful minds" that understand how the universe works. But none of that genius helps them interact with people, especially women. All this begins to change when a free-spirited beauty named Penny moves in next door. Sheldon, Leonard's roommate, is quite content spending his nights playing Klingon Boggle with their socially dysfunctional friends, fellow CalTech scientists Howard Wolowitz and Raj Koothrappali. However, Leonard sees in Penny a whole new universe of possibilities... including love.]], "2007-09-24", "Comedy", "CBS", "TV-PG", 3, 1, 0
        -- </transitive1-410>
    })

-------------------------------------------------------------------------------
-- 2015-05-18.  Make sure transitive constraints are avoided when column
-- affinities and collating sequences get in the way.
--
-- db close
-- forcedelete test.db
-- sql db test.db
test:do_execsql_test(
    "transitive1-500",
    [[
        CREATE TABLE x(i INTEGER PRIMARY KEY, y TEXT);
        INSERT INTO x VALUES(10, '10');
        SELECT * FROM x WHERE x.y>='1' AND x.y<'2' AND x.i=x.y;
    ]], {
        -- <transitive1-500>
        10, "10"
        -- </transitive1-500>
    })

test:execsql("drop table t1;")
test:execsql("drop table t2;")
test:do_execsql_test(
    "transitive1-510",
    [[
        CREATE TABLE t1(x TEXT primary key);
        CREATE TABLE t2(y TEXT primary key);
        INSERT INTO t1 VALUES('abc');
        INSERT INTO t2 VALUES('ABC');
        SELECT * FROM t1 CROSS JOIN t2 WHERE (x=y COLLATE "unicode_ci") AND y='ABC';
    ]], {
        -- <transitive1-510>
        "abc", "ABC"
        -- </transitive1-510>
    })

test:do_execsql_test(
    "transitive1-520",
    [[
        CREATE TABLE t3(i INTEGER PRIMARY KEY, t TEXT);
        INSERT INTO t3 VALUES(10, '10');
        SELECT * FROM t3 WHERE i=t AND t = '10 ';
    ]], {
        -- <transitive1-520>

        -- </transitive1-520>
    })

test:do_execsql_test(
    "transitive1-530",
    [[
        CREATE TABLE u1(x TEXT PRIMARY KEY, y INTEGER, z TEXT);
        CREATE INDEX i1 ON u1(x);
        INSERT INTO u1 VALUES('00013', 13, '013');
        SELECT * FROM u1 WHERE x=y AND y=z AND z='013';
    ]], {
        -- <transitive1-530>
        "00013",13,"013"
        -- </transitive1-530>
    })

test:do_execsql_test(
    "transitive1-540",
    [[
        CREATE TABLE b1(x TEXT PRIMARY KEY, y TEXT);
        INSERT INTO b1 VALUES('abc', 'ABC');
        CREATE INDEX b1x ON b1(x);
        SELECT * FROM b1 WHERE (x=y COLLATE "unicode_ci") AND y='ABC';
    ]], {
        -- <transitive1-540>
        "abc", "ABC"
        -- </transitive1-540>
    })

test:do_execsql_test(
    "transitive1-550",
    [[
        CREATE TABLE c1(id  INT PRIMARY KEY, x TEXT, y  TEXT COLLATE "unicode_ci", z TEXT);
        INSERT INTO c1 VALUES(1, 'ABC', 'ABC', 'abc');
        SELECT x, y, z FROM c1 WHERE x=y AND y=z AND z='abc';
    ]], {
        -- <transitive1-550>
        "ABC", "ABC", "abc"
        -- </transitive1-550>
    })

test:do_execsql_test(
    "transitive1-560",
    [[
        CREATE INDEX c1x ON c1(x);
        SELECT x, y, z FROM c1 WHERE x=y AND y=z AND z='abc';
    ]], {
        -- <transitive1-560>
        "ABC", "ABC", "abc"
        -- </transitive1-560>
    })

test:do_execsql_test(
    "transitive1-560eqp",
    [[
        EXPLAIN QUERY PLAN
        SELECT x, y, z FROM c1 WHERE x=y AND y=z AND z='abc';
    ]], {
        -- <transitive1-560eqp>
        "/SCAN TABLE C1/"
        -- </transitive1-560eqp>
    })

test:do_execsql_test(
    "transitive1-570",
    [[
        SELECT * FROM c1 WHERE x=y AND z=y AND z='abc';
    ]], {
        -- <transitive1-570>
        1, "ABC", "ABC", "abc"
        -- </transitive1-570>
    })

-- explain changed
-- because of primary key
test:do_execsql_test(
    "transitive1-570eqp",
    [[
        EXPLAIN QUERY PLAN
        SELECT * FROM c1 WHERE x=y AND z=y AND z='abc';
    ]], {
        -- <transitive1-570eqp>
        "/SCAN TABLE C1/"
        -- </transitive1-570eqp>
    })


test:finish_test()