File: resultset.out

package info (click to toggle)
pgtap 1.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,792 kB
  • sloc: sql: 25,795; sh: 790; makefile: 287; perl: 175
file content (547 lines) | stat: -rw-r--r-- 36,755 bytes parent folder | download | duplicates (5)
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
\unset ECHO
1..545
ok 1 - Should create temp table with simple query
ok 2 - Table __foonames__ should exist
ok 3 - Should create a temp table for a prepared statement
ok 4 - Table __somenames__ should exist
ok 5 - Should create a temp table for a prepared statement with space
ok 6 - Table __somenames__ should exist
ok 7 - Table __spacenames__ should exist
ok 8 - set_eq(prepared, prepared, desc) should pass
ok 9 - set_eq(prepared, prepared, desc) should have the proper description
ok 10 - set_eq(prepared, prepared, desc) should have the proper diagnostics
ok 11 - set_eq(prepared, prepared) should pass
ok 12 - set_eq(prepared, prepared) should have the proper description
ok 13 - set_eq(prepared, prepared) should have the proper diagnostics
ok 14 - set_eq(execute, execute, desc) should pass
ok 15 - set_eq(execute, execute, desc) should have the proper description
ok 16 - set_eq(execute, execute, desc) should have the proper diagnostics
ok 17 - set_eq(select, select) should pass
ok 18 - set_eq(select, select) should have the proper description
ok 19 - set_eq(select, select) should have the proper diagnostics
ok 20 - set_eq(values, dupe values) should pass
ok 21 - set_eq(values, dupe values) should have the proper description
ok 22 - set_eq(values, dupe values) should have the proper diagnostics
ok 23 - set_eq(prepared, select) fail extra should fail
ok 24 - set_eq(prepared, select) fail extra should have the proper description
ok 25 - set_eq(prepared, select) fail extra should have the proper diagnostics
ok 26 - set_eq(prepared, select) fail extras should fail
ok 27 - set_eq(prepared, select) fail extras should have the proper description
ok 28 - set_eq(prepared, select) fail extras should have the proper diagnostics
ok 29 - set_eq(select, prepared) fail missing should fail
ok 30 - set_eq(select, prepared) fail missing should have the proper description
ok 31 - set_eq(select, prepared) fail missing should have the proper diagnostics
ok 32 - set_eq(select, prepared) fail missings should fail
ok 33 - set_eq(select, prepared) fail missings should have the proper description
ok 34 - set_eq(select, prepared) fail missings should have the proper diagnostics
ok 35 - set_eq(select, select) fail extra & missing should fail
ok 36 - set_eq(select, select) fail extra & missing should have the proper description
ok 37 - set_eq(select, select) fail extra & missing should have the proper diagnostics
ok 38 - set_eq(select, select) fail extras & missings should fail
ok 39 - set_eq(select, select) fail extras & missings should have the proper description
ok 40 - set_eq(select, select) fail extras & missings should have the proper diagnostics
ok 41 - set_eq(values, values) fail mismatch should fail
ok 42 - set_eq(values, values) fail mismatch should have the proper description
ok 43 - set_eq(values, values) fail mismatch should have the proper diagnostics
ok 44 - set_eq(values, values) fail column count should fail
ok 45 - set_eq(values, values) fail column count should have the proper description
ok 46 - set_eq(values, values) fail column count should have the proper diagnostics
ok 47 - set_eq(sql, sql) fail type schema visibility should fail
ok 48 - set_eq(sql, sql) fail type schema visibility should have the proper description
ok 49 - set_eq(sql, sql) fail type schema visibility should have the proper diagnostics
ok 50 - bag_eq(prepared, prepared, desc) should pass
ok 51 - bag_eq(prepared, prepared, desc) should have the proper description
ok 52 - bag_eq(prepared, prepared, desc) should have the proper diagnostics
ok 53 - bag_eq(prepared, prepared) should pass
ok 54 - bag_eq(prepared, prepared) should have the proper description
ok 55 - bag_eq(prepared, prepared) should have the proper diagnostics
ok 56 - bag_eq(execute, execute) should pass
ok 57 - bag_eq(execute, execute) should have the proper description
ok 58 - bag_eq(execute, execute) should have the proper diagnostics
ok 59 - bag_eq(select, select) should pass
ok 60 - bag_eq(select, select) should have the proper description
ok 61 - bag_eq(select, select) should have the proper diagnostics
ok 62 - bag_eq(dupe values, dupe values) should pass
ok 63 - bag_eq(dupe values, dupe values) should have the proper description
ok 64 - bag_eq(dupe values, dupe values) should have the proper diagnostics
ok 65 - bag_eq(prepared, select) fail extra should fail
ok 66 - bag_eq(prepared, select) fail extra should have the proper description
ok 67 - bag_eq(prepared, select) fail extra should have the proper diagnostics
ok 68 - bag_eq(prepared, select) fail extras should fail
ok 69 - bag_eq(prepared, select) fail extras should have the proper description
ok 70 - bag_eq(prepared, select) fail extras should have the proper diagnostics
ok 71 - bag_eq(select, prepared) fail missing should fail
ok 72 - bag_eq(select, prepared) fail missing should have the proper description
ok 73 - bag_eq(select, prepared) fail missing should have the proper diagnostics
ok 74 - bag_eq(select, prepared) fail missings should fail
ok 75 - bag_eq(select, prepared) fail missings should have the proper description
ok 76 - bag_eq(select, prepared) fail missings should have the proper diagnostics
ok 77 - bag_eq(select, select) fail extra & missing should fail
ok 78 - bag_eq(select, select) fail extra & missing should have the proper description
ok 79 - bag_eq(select, select) fail extra & missing should have the proper diagnostics
ok 80 - bag_eq(select, select) fail extras & missings should fail
ok 81 - bag_eq(select, select) fail extras & missings should have the proper description
ok 82 - bag_eq(select, select) fail extras & missings should have the proper diagnostics
ok 83 - bag_eq(values, values) fail mismatch should fail
ok 84 - bag_eq(values, values) fail mismatch should have the proper description
ok 85 - bag_eq(values, values) fail mismatch should have the proper diagnostics
ok 86 - bag_eq(values, values) fail column count should fail
ok 87 - bag_eq(values, values) fail column count should have the proper description
ok 88 - bag_eq(values, values) fail column count should have the proper diagnostics
ok 89 - bag_eq(values, values) fail missing dupe should fail
ok 90 - bag_eq(values, values) fail missing dupe should have the proper description
ok 91 - bag_eq(values, values) fail missing dupe should have the proper diagnostics
ok 92 - set_ne(prepared, select, desc) should pass
ok 93 - set_ne(prepared, select, desc) should have the proper description
ok 94 - set_ne(prepared, select, desc) should have the proper diagnostics
ok 95 - set_ne(prepared, select) should pass
ok 96 - set_ne(prepared, select) should have the proper description
ok 97 - set_ne(prepared, select) should have the proper diagnostics
ok 98 - set_ne(prepared, prepared) fail should fail
ok 99 - set_ne(prepared, prepared) fail should have the proper description
ok 100 - set_ne(prepared, prepared) fail should have the proper diagnostics
ok 101 - set_ne fail with column mismatch should fail
ok 102 - set_ne fail with column mismatch should have the proper description
ok 103 - set_ne fail with column mismatch should have the proper diagnostics
ok 104 - set_ne fail with different col counts should fail
ok 105 - set_ne fail with different col counts should have the proper description
ok 106 - set_ne fail with different col counts should have the proper diagnostics
ok 107 - set_ne fail with dupe should fail
ok 108 - set_ne fail with dupe should have the proper description
ok 109 - set_ne fail with dupe should have the proper diagnostics
ok 110 - bag_ne(prepared, select, desc) should pass
ok 111 - bag_ne(prepared, select, desc) should have the proper description
ok 112 - bag_ne(prepared, select, desc) should have the proper diagnostics
ok 113 - bag_ne(prepared, select) should pass
ok 114 - bag_ne(prepared, select) should have the proper description
ok 115 - bag_ne(prepared, select) should have the proper diagnostics
ok 116 - bag_ne(prepared, prepared) fail should fail
ok 117 - bag_ne(prepared, prepared) fail should have the proper description
ok 118 - bag_ne(prepared, prepared) fail should have the proper diagnostics
ok 119 - bag_ne fail with column mismatch should fail
ok 120 - bag_ne fail with column mismatch should have the proper description
ok 121 - bag_ne fail with column mismatch should have the proper diagnostics
ok 122 - set_ne pass with dupe should pass
ok 123 - set_ne pass with dupe should have the proper description
ok 124 - set_ne pass with dupe should have the proper diagnostics
ok 125 - bag_ne fail with column mismatch should fail
ok 126 - bag_ne fail with column mismatch should have the proper description
ok 127 - bag_ne fail with column mismatch should have the proper diagnostics
ok 128 - bag_ne fail with different col counts should fail
ok 129 - bag_ne fail with different col counts should have the proper description
ok 130 - bag_ne fail with different col counts should have the proper diagnostics
ok 131 - results_eq(prepared, prepared, desc) should pass
ok 132 - results_eq(prepared, prepared, desc) should have the proper description
ok 133 - results_eq(prepared, prepared, desc) should have the proper diagnostics
ok 134 - results_eq(prepared, prepared) should pass
ok 135 - results_eq(prepared, prepared) should have the proper description
ok 136 - results_eq(prepared, prepared) should have the proper diagnostics
ok 137 - results_eq(execute, execute) should pass
ok 138 - results_eq(execute, execute) should have the proper description
ok 139 - results_eq(execute, execute) should have the proper diagnostics
ok 140 - results_eq(select, select) should pass
ok 141 - results_eq(select, select) should have the proper description
ok 142 - results_eq(select, select) should have the proper diagnostics
ok 143 - results_eq(dupe values, dupe values) should pass
ok 144 - results_eq(dupe values, dupe values) should have the proper description
ok 145 - results_eq(dupe values, dupe values) should have the proper diagnostics
ok 146 - results_eq(values with null, values with null) should pass
ok 147 - results_eq(values with null, values with null) should have the proper description
ok 148 - results_eq(values with null, values with null) should have the proper diagnostics
ok 149 - results_eq(nulls, nulls) should pass
ok 150 - results_eq(nulls, nulls) should have the proper description
ok 151 - results_eq(nulls, nulls) should have the proper diagnostics
ok 152 - results_eq(nulls, nulls) fail should fail
ok 153 - results_eq(nulls, nulls) fail should have the proper description
ok 154 - results_eq(nulls, nulls) fail should have the proper diagnostics
ok 155 - results_eq(prepared, select) fail should fail
ok 156 - results_eq(prepared, select) fail should have the proper description
ok 157 - results_eq(prepared, select) fail should have the proper diagnostics
ok 158 - results_eq(select, prepared) fail missing last row should fail
ok 159 - results_eq(select, prepared) fail missing last row should have the proper description
ok 160 - results_eq(select, prepared) fail missing last row should have the proper diagnostics
ok 161 - results_eq(prepared, select) fail missing first row should fail
ok 162 - results_eq(prepared, select) fail missing first row should have the proper description
ok 163 - results_eq(prepared, select) fail missing first row should have the proper diagnostics
ok 164 - results_eq(values dupe, values) should fail
ok 165 - results_eq(values dupe, values) should have the proper description
ok 166 - results_eq(values dupe, values) should have the proper diagnostics
ok 167 - results_eq(values null, values) should fail
ok 168 - results_eq(values null, values) should have the proper description
ok 169 - results_eq(values null, values) should have the proper diagnostics
ok 170 - results_eq(values, values) mismatch should fail
ok 171 - results_eq(values, values) mismatch should have the proper description
ok 172 - results_eq(values, values) mismatch should have the proper diagnostics
ok 173 - results_eq(values, values) subtle mismatch should fail
ok 174 - results_eq(values, values) subtle mismatch should have the proper description
ok 175 - results_eq(values, values) subtle mismatch should have the proper diagnostics
ok 176 - results_eq(values, values) integer type mismatch should fail
ok 177 - results_eq(values, values) integer type mismatch should have the proper description
ok 178 - results_eq(values, values) integer type mismatch should have the proper diagnostics
ok 179 - results_eq(values, values) fail column count should fail
ok 180 - results_eq(values, values) fail column count should have the proper description
ok 181 - results_eq(values, values) fail column count should have the proper diagnostics
ok 182 - results_eq(cursor, cursor) should pass
ok 183 - results_eq(cursor, cursor) should have the proper description
ok 184 - results_eq(cursor, cursor) should have the proper diagnostics
ok 185 - results_eq(cursor, prepared) should pass
ok 186 - results_eq(cursor, prepared) should have the proper description
ok 187 - results_eq(cursor, prepared) should have the proper diagnostics
ok 188 - results_eq(prepared, cursor) should pass
ok 189 - results_eq(prepared, cursor) should have the proper description
ok 190 - results_eq(prepared, cursor) should have the proper diagnostics
ok 191 - results_eq(cursor, sql) should pass
ok 192 - results_eq(cursor, sql) should have the proper description
ok 193 - results_eq(cursor, sql) should have the proper diagnostics
ok 194 - results_eq(sql, cursor) should pass
ok 195 - results_eq(sql, cursor) should have the proper description
ok 196 - results_eq(sql, cursor) should have the proper diagnostics
ok 197 - set_has( prepared, prepared, description ) should pass
ok 198 - set_has( prepared, prepared, description ) should have the proper description
ok 199 - set_has( prepared, prepared, description ) should have the proper diagnostics
ok 200 - set_has( prepared, subprepared ) should pass
ok 201 - set_has( prepared, subprepared ) should have the proper description
ok 202 - set_has( prepared, subprepared ) should have the proper diagnostics
ok 203 - set_has( execute, execute ) should pass
ok 204 - set_has( execute, execute ) should have the proper description
ok 205 - set_has( execute, execute ) should have the proper diagnostics
ok 206 - set_has( select, select ) should pass
ok 207 - set_has( select, select ) should have the proper description
ok 208 - set_has( select, select ) should have the proper diagnostics
ok 209 - set_has( prepared, empty ) should pass
ok 210 - set_has( prepared, empty ) should have the proper description
ok 211 - set_has( prepared, empty ) should have the proper diagnostics
ok 212 - set_has( prepared, dupes ) should pass
ok 213 - set_has( prepared, dupes ) should have the proper description
ok 214 - set_has( prepared, dupes ) should have the proper diagnostics
ok 215 - set_has( dupes, values ) should pass
ok 216 - set_has( dupes, values ) should have the proper description
ok 217 - set_has( dupes, values ) should have the proper diagnostics
ok 218 - set_has( missing1, expect ) should fail
ok 219 - set_has( missing1, expect ) should have the proper description
ok 220 - set_has( missing1, expect ) should have the proper diagnostics
ok 221 - set_has(missing2, expect ) should fail
ok 222 - set_has(missing2, expect ) should have the proper description
ok 223 - set_has(missing2, expect ) should have the proper diagnostics
ok 224 - set_has((int,text), (text,int)) should fail
ok 225 - set_has((int,text), (text,int)) should have the proper description
ok 226 - set_has((int,text), (text,int)) should have the proper diagnostics
ok 227 - set_has((int), (text,int)) should fail
ok 228 - set_has((int), (text,int)) should have the proper description
ok 229 - set_has((int), (text,int)) should have the proper diagnostics
ok 230 - bag_has( prepared, prepared, description ) should pass
ok 231 - bag_has( prepared, prepared, description ) should have the proper description
ok 232 - bag_has( prepared, prepared, description ) should have the proper diagnostics
ok 233 - bag_has( prepared, subprepared ) should pass
ok 234 - bag_has( prepared, subprepared ) should have the proper description
ok 235 - bag_has( prepared, subprepared ) should have the proper diagnostics
ok 236 - bag_has( execute, execute ) should pass
ok 237 - bag_has( execute, execute ) should have the proper description
ok 238 - bag_has( execute, execute ) should have the proper diagnostics
ok 239 - bag_has( select, select ) should pass
ok 240 - bag_has( select, select ) should have the proper description
ok 241 - bag_has( select, select ) should have the proper diagnostics
ok 242 - bag_has( prepared, empty ) should pass
ok 243 - bag_has( prepared, empty ) should have the proper description
ok 244 - bag_has( prepared, empty ) should have the proper diagnostics
ok 245 - bag_has( prepared, dupes ) should fail
ok 246 - bag_has( prepared, dupes ) should have the proper description
ok 247 - bag_has( prepared, dupes ) should have the proper diagnostics
ok 248 - bag_has( dupes, values ) should pass
ok 249 - bag_has( dupes, values ) should have the proper description
ok 250 - bag_has( dupes, values ) should have the proper diagnostics
ok 251 - bag_has( missing1, expect ) should fail
ok 252 - bag_has( missing1, expect ) should have the proper description
ok 253 - bag_has( missing1, expect ) should have the proper diagnostics
ok 254 - bag_has(missing2, expect ) should fail
ok 255 - bag_has(missing2, expect ) should have the proper description
ok 256 - bag_has(missing2, expect ) should have the proper diagnostics
ok 257 - bag_has((int,text), (text,int)) should fail
ok 258 - bag_has((int,text), (text,int)) should have the proper description
ok 259 - bag_has((int,text), (text,int)) should have the proper diagnostics
ok 260 - bag_has((int), (text,int)) should fail
ok 261 - bag_has((int), (text,int)) should have the proper description
ok 262 - bag_has((int), (text,int)) should have the proper diagnostics
ok 263 - set_hasnt( prepared, prepared, description ) should pass
ok 264 - set_hasnt( prepared, prepared, description ) should have the proper description
ok 265 - set_hasnt( prepared, prepared, description ) should have the proper diagnostics
ok 266 - set_hasnt( prepared, prepared, description ) should pass
ok 267 - set_hasnt( prepared, prepared, description ) should have the proper description
ok 268 - set_hasnt( prepared, prepared, description ) should have the proper diagnostics
ok 269 - set_hasnt( execute, execute ) should pass
ok 270 - set_hasnt( execute, execute ) should have the proper description
ok 271 - set_hasnt( execute, execute ) should have the proper diagnostics
ok 272 - set_hasnt( select, select ) should pass
ok 273 - set_hasnt( select, select ) should have the proper description
ok 274 - set_hasnt( select, select ) should have the proper diagnostics
ok 275 - set_hasnt( prepared, empty ) should pass
ok 276 - set_hasnt( prepared, empty ) should have the proper description
ok 277 - set_hasnt( prepared, empty ) should have the proper diagnostics
ok 278 - set_hasnt( prepared, dupes ) should pass
ok 279 - set_hasnt( prepared, dupes ) should have the proper description
ok 280 - set_hasnt( prepared, dupes ) should have the proper diagnostics
ok 281 - set_hasnt( prepared, value ) should fail
ok 282 - set_hasnt( prepared, value ) should have the proper description
ok 283 - set_hasnt( prepared, value ) should have the proper diagnostics
ok 284 - set_hasnt( prepared, values ) should fail
ok 285 - set_hasnt( prepared, values ) should have the proper description
ok 286 - set_hasnt( prepared, values ) should have the proper diagnostics
ok 287 - set_hasnt((int,text), (text,int)) should fail
ok 288 - set_hasnt((int,text), (text,int)) should have the proper description
ok 289 - set_hasnt((int,text), (text,int)) should have the proper diagnostics
ok 290 - set_hasnt((int), (text,int)) should fail
ok 291 - set_hasnt((int), (text,int)) should have the proper description
ok 292 - set_hasnt((int), (text,int)) should have the proper diagnostics
ok 293 - bag_hasnt( prepared, prepared, description ) should pass
ok 294 - bag_hasnt( prepared, prepared, description ) should have the proper description
ok 295 - bag_hasnt( prepared, prepared, description ) should have the proper diagnostics
ok 296 - bag_hasnt( prepared, prepared, description ) should pass
ok 297 - bag_hasnt( prepared, prepared, description ) should have the proper description
ok 298 - bag_hasnt( prepared, prepared, description ) should have the proper diagnostics
ok 299 - bag_hasnt( execute, execute ) should pass
ok 300 - bag_hasnt( execute, execute ) should have the proper description
ok 301 - bag_hasnt( execute, execute ) should have the proper diagnostics
ok 302 - bag_hasnt( select, select ) should pass
ok 303 - bag_hasnt( select, select ) should have the proper description
ok 304 - bag_hasnt( select, select ) should have the proper diagnostics
ok 305 - bag_hasnt( prepared, empty ) should pass
ok 306 - bag_hasnt( prepared, empty ) should have the proper description
ok 307 - bag_hasnt( prepared, empty ) should have the proper diagnostics
ok 308 - bag_hasnt( prepared, value ) should fail
ok 309 - bag_hasnt( prepared, value ) should have the proper description
ok 310 - bag_hasnt( prepared, value ) should have the proper diagnostics
ok 311 - bag_hasnt( prepared, values ) should fail
ok 312 - bag_hasnt( prepared, values ) should have the proper description
ok 313 - bag_hasnt( prepared, values ) should have the proper diagnostics
ok 314 - bag_hasnt((int,text), (text,int)) should fail
ok 315 - bag_hasnt((int,text), (text,int)) should have the proper description
ok 316 - bag_hasnt((int,text), (text,int)) should have the proper diagnostics
ok 317 - bag_hasnt((int), (text,int)) should fail
ok 318 - bag_hasnt((int), (text,int)) should have the proper description
ok 319 - bag_hasnt((int), (text,int)) should have the proper diagnostics
ok 320 - bag_hasnt( dupes, dupes ) should fail
ok 321 - bag_hasnt( dupes, dupes ) should have the proper description
ok 322 - bag_hasnt( dupes, dupes ) should have the proper diagnostics
ok 323 - bag_hasnt( value, dupes ) should fail
ok 324 - bag_hasnt( value, dupes ) should have the proper description
ok 325 - bag_hasnt( value, dupes ) should have the proper diagnostics
ok 326 - set_eq(sql, array, desc) should pass
ok 327 - set_eq(sql, array, desc) should have the proper description
ok 328 - set_eq(sql, array, desc) should have the proper diagnostics
ok 329 - set_eq(sql, array) should pass
ok 330 - set_eq(sql, array) should have the proper description
ok 331 - set_eq(sql, array) should have the proper diagnostics
ok 332 - set_eq(sql, dupe array) should pass
ok 333 - set_eq(sql, dupe array) should have the proper description
ok 334 - set_eq(sql, dupe array) should have the proper diagnostics
ok 335 - set_eq(sql, array) extra record should fail
ok 336 - set_eq(sql, array) extra record should have the proper description
ok 337 - set_eq(sql, array) extra record should have the proper diagnostics
ok 338 - set_eq(sql, array) missing record should fail
ok 339 - set_eq(sql, array) missing record should have the proper description
ok 340 - set_eq(sql, array) missing record should have the proper diagnostics
ok 341 - set_eq(sql, array) incompatible types should fail
ok 342 - set_eq(sql, array) incompatible types should have the proper description
ok 343 - set_eq(sql, array) incompatible types should have the proper diagnostics
ok 344 - set_eq(sql, array) incompatible types should fail
ok 345 - set_eq(sql, array) incompatible types should have the proper description
ok 346 - set_eq(sql, array) incompatible types should have the proper diagnostics
ok 347 - bag_eq(sql, array, desc) should pass
ok 348 - bag_eq(sql, array, desc) should have the proper description
ok 349 - bag_eq(sql, array, desc) should have the proper diagnostics
ok 350 - bag_eq(sql, array) should pass
ok 351 - bag_eq(sql, array) should have the proper description
ok 352 - bag_eq(sql, array) should have the proper diagnostics
ok 353 - bag_eq(sql, dupe array) fail should fail
ok 354 - bag_eq(sql, dupe array) fail should have the proper description
ok 355 - bag_eq(sql, dupe array) fail should have the proper diagnostics
ok 356 - bag_eq(sql, array) extra record should fail
ok 357 - bag_eq(sql, array) extra record should have the proper description
ok 358 - bag_eq(sql, array) extra record should have the proper diagnostics
ok 359 - bag_eq(sql, array) missing record should fail
ok 360 - bag_eq(sql, array) missing record should have the proper description
ok 361 - bag_eq(sql, array) missing record should have the proper diagnostics
ok 362 - bag_eq(sql, array) incompatible types should fail
ok 363 - bag_eq(sql, array) incompatible types should have the proper description
ok 364 - bag_eq(sql, array) incompatible types should have the proper diagnostics
ok 365 - bag_eq(sql, array) incompatible types should fail
ok 366 - bag_eq(sql, array) incompatible types should have the proper description
ok 367 - bag_eq(sql, array) incompatible types should have the proper diagnostics
ok 368 - set_ne(sql, array, desc) should pass
ok 369 - set_ne(sql, array, desc) should have the proper description
ok 370 - set_ne(sql, array, desc) should have the proper diagnostics
ok 371 - set_ne(sql, array) should pass
ok 372 - set_ne(sql, array) should have the proper description
ok 373 - set_ne(sql, array) should have the proper diagnostics
ok 374 - set_ne(sql, array) fail should fail
ok 375 - set_ne(sql, array) fail should have the proper description
ok 376 - set_ne(sql, array) fail should have the proper diagnostics
ok 377 - set_ne(sql, dupes array) fail should fail
ok 378 - set_ne(sql, dupes array) fail should have the proper description
ok 379 - set_ne(sql, dupes array) fail should have the proper diagnostics
ok 380 - set_ne(sql, array) incompatible types should fail
ok 381 - set_ne(sql, array) incompatible types should have the proper description
ok 382 - set_ne(sql, array) incompatible types should have the proper diagnostics
ok 383 - set_ne(sql, array) incompatible types should fail
ok 384 - set_ne(sql, array) incompatible types should have the proper description
ok 385 - set_ne(sql, array) incompatible types should have the proper diagnostics
ok 386 - bag_ne(sql, array, desc) should pass
ok 387 - bag_ne(sql, array, desc) should have the proper description
ok 388 - bag_ne(sql, array, desc) should have the proper diagnostics
ok 389 - bag_ne(sql, array) should pass
ok 390 - bag_ne(sql, array) should have the proper description
ok 391 - bag_ne(sql, array) should have the proper diagnostics
ok 392 - bag_ne(sql, array) fail should fail
ok 393 - bag_ne(sql, array) fail should have the proper description
ok 394 - bag_ne(sql, array) fail should have the proper diagnostics
ok 395 - bag_ne(sql, dupes array) should pass
ok 396 - bag_ne(sql, dupes array) should have the proper description
ok 397 - bag_ne(sql, dupes array) should have the proper diagnostics
ok 398 - bag_ne(sql, array) incompatible types should fail
ok 399 - bag_ne(sql, array) incompatible types should have the proper description
ok 400 - bag_ne(sql, array) incompatible types should have the proper diagnostics
ok 401 - bag_ne(sql, array) incompatible types should fail
ok 402 - bag_ne(sql, array) incompatible types should have the proper description
ok 403 - bag_ne(sql, array) incompatible types should have the proper diagnostics
ok 404 - results_eq(prepared, array, desc) should pass
ok 405 - results_eq(prepared, array, desc) should have the proper description
ok 406 - results_eq(prepared, array, desc) should have the proper diagnostics
ok 407 - results_eq(prepared, array) should pass
ok 408 - results_eq(prepared, array) should have the proper description
ok 409 - results_eq(prepared, array) should have the proper diagnostics
ok 410 - results_eq(sql, array, desc) should pass
ok 411 - results_eq(sql, array, desc) should have the proper description
ok 412 - results_eq(sql, array, desc) should have the proper diagnostics
ok 413 - results_eq(sql, array, desc) should pass
ok 414 - results_eq(sql, array, desc) should have the proper description
ok 415 - results_eq(sql, array, desc) should have the proper diagnostics
ok 416 - results_eq(prepared, array) extra record should fail
ok 417 - results_eq(prepared, array) extra record should have the proper description
ok 418 - results_eq(prepared, array) extra record should have the proper diagnostics
ok 419 - results_eq(select, array) missing record should fail
ok 420 - results_eq(select, array) missing record should have the proper description
ok 421 - results_eq(select, array) missing record should have the proper diagnostics
ok 422 - results_ne(prepared, prepared, desc) should pass
ok 423 - results_ne(prepared, prepared, desc) should have the proper description
ok 424 - results_ne(prepared, prepared, desc) should have the proper diagnostics
ok 425 - results_ne(prepared, prepared) should pass
ok 426 - results_ne(prepared, prepared) should have the proper description
ok 427 - results_ne(prepared, prepared) should have the proper diagnostics
ok 428 - results_ne(execute, execute) should pass
ok 429 - results_ne(execute, execute) should have the proper description
ok 430 - results_ne(execute, execute) should have the proper diagnostics
ok 431 - results_ne(select, select) should pass
ok 432 - results_ne(select, select) should have the proper description
ok 433 - results_ne(select, select) should have the proper diagnostics
ok 434 - results_ne(dupe values, dupe values) should pass
ok 435 - results_ne(dupe values, dupe values) should have the proper description
ok 436 - results_ne(dupe values, dupe values) should have the proper diagnostics
ok 437 - results_ne(values with null, values with null) should pass
ok 438 - results_ne(values with null, values with null) should have the proper description
ok 439 - results_ne(values with null, values with null) should have the proper diagnostics
ok 440 - results_ne(nulls, nulls) should pass
ok 441 - results_ne(nulls, nulls) should have the proper description
ok 442 - results_ne(nulls, nulls) should have the proper diagnostics
ok 443 - results_ne(prepared, select) fail should fail
ok 444 - results_ne(prepared, select) fail should have the proper description
ok 445 - results_ne(prepared, select) fail should have the proper diagnostics
ok 446 - results_ne(select, prepared) missing last row should pass
ok 447 - results_ne(select, prepared) missing last row should have the proper description
ok 448 - results_ne(select, prepared) missing last row should have the proper diagnostics
ok 449 - results_ne(prepared, select) missing first row should pass
ok 450 - results_ne(prepared, select) missing first row should have the proper description
ok 451 - results_ne(prepared, select) missing first row should have the proper diagnostics
ok 452 - results_ne(values dupe, values) should pass
ok 453 - results_ne(values dupe, values) should have the proper description
ok 454 - results_ne(values dupe, values) should have the proper diagnostics
ok 455 - results_ne(values null, values) should pass
ok 456 - results_ne(values null, values) should have the proper description
ok 457 - results_ne(values null, values) should have the proper diagnostics
ok 458 - results_ne(values, values) mismatch should fail
ok 459 - results_ne(values, values) mismatch should have the proper description
ok 460 - results_ne(values, values) mismatch should have the proper diagnostics
ok 461 - results_ne(values, values) subtle mismatch should fail
ok 462 - results_ne(values, values) subtle mismatch should have the proper description
ok 463 - results_ne(values, values) subtle mismatch should have the proper diagnostics
ok 464 - results_ne(values, values) fail column count should fail
ok 465 - results_ne(values, values) fail column count should have the proper description
ok 466 - results_ne(values, values) fail column count should have the proper diagnostics
ok 467 - results_ne(cursor, cursor) should fail
ok 468 - results_ne(cursor, cursor) should have the proper description
ok 469 - results_ne(cursor, cursor) should have the proper diagnostics
ok 470 - results_ne(cursor, prepared) should fail
ok 471 - results_ne(cursor, prepared) should have the proper description
ok 472 - results_ne(cursor, prepared) should have the proper diagnostics
ok 473 - results_ne(prepared, cursor) should fail
ok 474 - results_ne(prepared, cursor) should have the proper description
ok 475 - results_ne(prepared, cursor) should have the proper diagnostics
ok 476 - results_ne(cursor, sql) should pass
ok 477 - results_ne(cursor, sql) should have the proper description
ok 478 - results_ne(cursor, sql) should have the proper diagnostics
ok 479 - results_ne(sql, cursor) should fail
ok 480 - results_ne(sql, cursor) should have the proper description
ok 481 - results_ne(sql, cursor) should have the proper diagnostics
ok 482 - is_empty(sql, desc) should pass
ok 483 - is_empty(sql, desc) should have the proper description
ok 484 - is_empty(sql, desc) should have the proper diagnostics
ok 485 - is_empty(sql) should pass
ok 486 - is_empty(sql) should have the proper description
ok 487 - is_empty(sql) should have the proper diagnostics
ok 488 - is_empty(prepared, desc) should pass
ok 489 - is_empty(prepared, desc) should have the proper description
ok 490 - is_empty(prepared, desc) should have the proper diagnostics
ok 491 - is_empty(prepared) should pass
ok 492 - is_empty(prepared) should have the proper description
ok 493 - is_empty(prepared) should have the proper diagnostics
ok 494 - is_empty(prepared, desc) fail should fail
ok 495 - is_empty(prepared, desc) fail should have the proper description
ok 496 - is_empty(prepared, desc) fail should have the proper diagnostics
ok 497 - is_empty(prepared) fail should fail
ok 498 - is_empty(prepared) fail should have the proper description
ok 499 - is_empty(prepared) fail should have the proper diagnostics
ok 500 - isnt_empty(sql, desc) should pass
ok 501 - isnt_empty(sql, desc) should have the proper description
ok 502 - isnt_empty(sql, desc) should have the proper diagnostics
ok 503 - isnt_empty(sql, desc) should fail
ok 504 - isnt_empty(sql, desc) should have the proper description
ok 505 - isnt_empty(sql, desc) should have the proper diagnostics
ok 506 - isnt_empty(sql) should fail
ok 507 - isnt_empty(sql) should have the proper description
ok 508 - isnt_empty(sql) should have the proper diagnostics
ok 509 - isnt_empty(sql) should pass
ok 510 - isnt_empty(sql) should have the proper description
ok 511 - isnt_empty(sql) should have the proper diagnostics
ok 512 - isnt_empty(prepared, desc) should pass
ok 513 - isnt_empty(prepared, desc) should have the proper description
ok 514 - isnt_empty(prepared, desc) should have the proper diagnostics
ok 515 - isnt_empty(prepared, desc) should fail
ok 516 - isnt_empty(prepared, desc) should have the proper description
ok 517 - isnt_empty(prepared, desc) should have the proper diagnostics
ok 518 - isnt_empty(prepared) should pass
ok 519 - isnt_empty(prepared) should have the proper description
ok 520 - isnt_empty(prepared) should have the proper diagnostics
ok 521 - isnt_empty(prepared) should fail
ok 522 - isnt_empty(prepared) should have the proper description
ok 523 - isnt_empty(prepared) should have the proper diagnostics
ok 524 - row_eq(prepared, record, desc) should pass
ok 525 - row_eq(prepared, record, desc) should have the proper description
ok 526 - row_eq(prepared, record, desc) should have the proper diagnostics
ok 527 - row_eq(sql, record, desc) should pass
ok 528 - row_eq(sql, record, desc) should have the proper description
ok 529 - row_eq(sql, record, desc) should have the proper diagnostics
ok 530 - row_eq(prepared, record, desc) should pass
ok 531 - row_eq(prepared, record, desc) should have the proper description
ok 532 - row_eq(prepared, record, desc) should have the proper diagnostics
ok 533 - row_eq(prepared, record, desc) should fail
ok 534 - row_eq(prepared, record, desc) should have the proper description
ok 535 - row_eq(prepared, record, desc) should have the proper diagnostics
ok 536 - row_eq(prepared, sometype, desc) should pass
ok 537 - row_eq(prepared, sometype, desc) should have the proper description
ok 538 - row_eq(prepared, sometype, desc) should have the proper diagnostics
ok 539 - row_eq(sqlrow, sometype, desc) should pass
ok 540 - row_eq(sqlrow, sometype, desc) should have the proper description
ok 541 - row_eq(sqlrow, sometype, desc) should have the proper diagnostics
ok 542 - threw 0A000
ok 543 - row_eq(qry, record) should pass
ok 544 - row_eq(qry, record) should have the proper description
ok 545 - row_eq(qry, record) should have the proper diagnostics