-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate.py
629 lines (543 loc) · 22.1 KB
/
generate.py
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
import re
import sys
test_search_path = 'crockford'
new_types = ['crockford2', 'crockford4', 'crockford8']
old_types = ['int2', 'int4', 'int8']
comparison_ops = ['<', '<=', '=', '<>', '>=', '>']
arithmetic_ops = ['+', '-']
commutators = {
'<': '>',
'<=': '>=',
'=': '=',
'<>': '<>',
'>=': '<=',
'>': '<',
'+': '+',
'*': '*',
'&': '&',
'|': '|',
'#': '#',
}
negators = {
'<': '>=',
'<=': '>',
'=': '<>',
'<>': '=',
'>=': '<',
'>': '<=',
}
restriction_estimators = {
'=': 'eqsel',
'<>': 'neqsel',
'<': 'scalarltsel',
'<=': 'scalarltsel',
'>': 'scalargtsel',
'>=': 'scalargtsel',
}
join_estimators = {
'=': 'eqjoinsel',
'<>': 'neqjoinsel',
'<': 'scalarltjoinsel',
'<=': 'scalarltjoinsel',
'>': 'scalargtjoinsel',
'>=': 'scalargtjoinsel',
}
op_words = {
'<': 'lt', '<=': 'le', '=': 'eq', '<>': 'ne', '>=': 'ge', '>': 'gt',
'+': 'pl', '-': 'mi', '*': 'mul', '/': 'div', '%': 'mod',
'&': 'and', '|': 'or', '#': 'xor', '~': 'not', '<<': 'shl', '>>': 'shr',
}
c_types = {
'boolean': 'bool',
'int2': 'int16',
'int4': 'int32',
'int8': 'int64',
'crockford2': 'uint16',
'crockford4': 'uint32',
'crockford8': 'uint64',
}
def c_operator(op):
if op == '=':
return '=='
elif op == '<>':
return '!='
elif op == '#':
return '^'
else:
return op
def type_bits(typ):
m = re.search(r'(\d+)$', typ)
return int(m.group(1)) * 8
def type_signed(typ):
return not type_unsigned(typ)
def type_unsigned(typ):
return re.search(r'uint|crockford', typ) is not None
min_values = {}
max_values = {
'int2': '32767',
'int4': '2147483647',
'int8': '9223372036854775807',
'crockford2': '1ZZZ',
'crockford4': '3ZZZZZZ',
'crockford8': 'FZZZZZZZZZZZZ',
}
too_big = {
'int2': '40000',
'int4': '3000000000',
'int8': '10000000000000000000',
'crockford2': '2000',
'crockford4': '4000000',
'crockford8': 'G000000000000',
}
def next_bigger_type(typ):
m = re.match(r'(\w+)(\d+)', typ)
return m.group(1) + str(int(m.group(2)) * 2)
def write_c_function(f, funcname, argtypes, rettype, body):
f.write("""
PG_FUNCTION_INFO_V1({funcname});
Datum
{funcname}(PG_FUNCTION_ARGS)
{{
""".format(funcname=funcname))
argnum = 0
argvar = 0
for argtype in argtypes:
argvar += 1
if argtype is None:
continue
f.write("\t{0} arg{1} = PG_GETARG_{2}({3});\n"
.format(c_types[argtype],
argvar,
c_types[argtype].upper(),
argnum))
argnum += 1
f.write("\t{0} result;\n".format(c_types[rettype]))
f.write("\n")
f.write("\t" + body.replace("\n", "\n\t").replace("\n\t\n", "\n\n"))
f.write("\n")
f.write("""
\tPG_RETURN_{0}(result);
}}
""".format(c_types[rettype].upper()))
def write_sql_function(f, funcname, argtypes, rettype, sql_funcname=None, strict=True):
if not sql_funcname:
sql_funcname = funcname
f.write("CREATE FUNCTION {sql_funcname}({argtypes}) RETURNS {rettype}"
" IMMUTABLE{strict} LANGUAGE C AS 'MODULE_PATHNAME', '{funcname}';\n\n"
.format(sql_funcname=sql_funcname,
argtypes=', '.join([x for x in argtypes if x]),
rettype=rettype,
strict=(" STRICT" if strict else ""),
funcname=funcname))
def write_op_c_function(f, funcname, leftarg, rightarg, op, rettype, c_check='', intermediate_type=None):
body = ""
if intermediate_type:
body += "{0} result2;\n\n".format(c_types[intermediate_type])
if op in ['/', '%']:
body += """if (arg2 == 0)
{
\tereport(ERROR,
\t\t(errcode(ERRCODE_DIVISION_BY_ZERO),
\t\t errmsg("division by zero")));
\tPG_RETURN_NULL();
}
"""
if op == '%' and not type_unsigned(rightarg):
body += """if (arg2 == -1)
\tPG_RETURN_{0}(0);
""".format(c_types[rettype].upper())
if intermediate_type:
body += "result2 = "
else:
body += "result = "
if leftarg:
if intermediate_type:
body += "({0})".format(c_types[intermediate_type])
body += "arg1"
body += " " + c_operator(op) + " "
if rightarg:
if intermediate_type:
body += "({0})".format(c_types[intermediate_type])
body += "arg2"
body += ";"
if c_check:
body += """
if ({c_check})
\tereport(ERROR,
\t\t(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
\t\t errmsg("{rettype} out of range")));""".format(c_check=c_check,rettype=rettype)
if intermediate_type:
body += "\nresult = result2;"
write_c_function(f, funcname, [leftarg, rightarg], rettype, body)
def write_sql_operator(f, funcname, leftarg, rightarg, op, rettype):
sql_funcname = funcname
if op == '%':
# SQL standard requires a "mod" function rather than % operator
sql_funcname = 'mod'
write_sql_function(f, funcname, [leftarg, rightarg], rettype, sql_funcname=sql_funcname)
f.write("CREATE OPERATOR {0} (\n".format(op))
if leftarg:
f.write(" LEFTARG = {0},\n".format(leftarg))
if rightarg:
f.write(" RIGHTARG = {0},\n".format(rightarg))
if op in commutators:
f.write(" COMMUTATOR = {0},\n".format(commutators[op]))
if op in negators:
f.write(" NEGATOR = {0},\n".format(negators[op]))
if op in restriction_estimators:
f.write(" RESTRICT = {0},\n".format(restriction_estimators[op]))
if op in join_estimators:
f.write(" JOIN = {0},\n".format(join_estimators[op]))
if op in ['=']:
f.write(" HASHES,\n")
f.write(" MERGES,\n")
f.write(" PROCEDURE = {0}\n);\n\n".format(sql_funcname))
def write_cmp_c_function(f, leftarg, rightarg):
funcname = 'bt' + coalesce(leftarg, '') + coalesce(rightarg, '') + 'cmp'
write_c_function(f, funcname, [leftarg, rightarg], 'int4',
"""if (arg1 > arg2)
\tresult = 1;
else if (arg1 == arg2)
\tresult = 0;
else
\tresult = -1;""")
def write_cmp_sql_function(f, leftarg, rightarg):
funcname = 'bt' + coalesce(leftarg, '') + coalesce(rightarg, '') + 'cmp'
write_sql_function(f, funcname, [leftarg, rightarg], 'integer')
def write_sortsupport_c_function(f, typ, pgversion):
if pgversion >= 9.2:
f.write("""
static int
bt{typ}fastcmp(Datum x, Datum y, SortSupport ssup)
{{
\t{ctype} a = DatumGet{Ctype}(x);
\t{ctype} b = DatumGet{Ctype}(y);
\tif (a > b)
\t\treturn 1;
\telse if (a == b)
\t\treturn 0;
\telse
\t\treturn -1;
}}
PG_FUNCTION_INFO_V1(bt{typ}sortsupport);
Datum
bt{typ}sortsupport(PG_FUNCTION_ARGS)
{{
\tSortSupport ssup = (SortSupport) PG_GETARG_POINTER(0);
\tssup->comparator = bt{typ}fastcmp;
\tPG_RETURN_VOID();
}}
""".format(typ=typ, ctype=c_types[typ], Ctype=c_types[typ].replace('u', 'U').replace('i', 'I')))
def write_opclasses_sql(f, typ, pgversion):
f.write("""CREATE OPERATOR CLASS {typ}_ops
DEFAULT FOR TYPE {typ} USING btree FAMILY integer_ops AS
OPERATOR 1 < ,
OPERATOR 2 <= ,
OPERATOR 3 = ,
OPERATOR 4 >= ,
OPERATOR 5 > ,
FUNCTION 1 bt{typ}{typ}cmp({typ}, {typ})""".format(typ=typ))
if pgversion >= 9.2:
f.write(""",
FUNCTION 2 bt{typ}sortsupport(internal)""".format(typ=typ))
f.write(""";
CREATE OPERATOR CLASS {typ}_ops
DEFAULT FOR TYPE {typ} USING hash FAMILY integer_ops AS
OPERATOR 1 =,
FUNCTION 1 hash{typ}({typ});
""".format(typ=typ))
def coalesce(*args):
return next((a for a in args if a is not None), None)
def write_code(f_c, f_sql, leftarg, rightarg, op, rettype, c_check='', intermediate_type=None):
funcname = coalesce(leftarg, '') + coalesce(rightarg, '') + op_words[op]
write_op_c_function(f_c, funcname, leftarg, rightarg, op, rettype, c_check, intermediate_type)
write_sql_operator(f_sql, funcname, leftarg, rightarg, op, rettype)
def write_arithmetic_op(f_c, f_sql, f_test_sql, op, leftarg, rightarg):
args = sorted([leftarg, rightarg], key=lambda x: (type_bits(x), type_unsigned(x)))
rettype = args[-1]
if type_unsigned(rettype):
if op == '+':
if type_signed(leftarg):
c_check = '(arg1 < 0 && result > arg2) || (arg1 > 0 && result < arg2)'
elif type_signed(rightarg):
c_check = '(arg2 < 0 && result > arg1) || (arg2 > 0 && result < arg1)'
else: # both arguments unsigned
c_check = 'result < arg1 || result < arg2'
elif op == '-':
if type_signed(leftarg):
c_check = '(arg1 < 0) || (result > arg1)'
elif type_signed(rightarg):
c_check = '(arg2 < 0 && result < arg1) || (arg2 > 0 && result > arg1)'
else:
c_check = 'result > arg1'
elif op == '/':
if type_signed(leftarg):
c_check = 'arg1 < 0'
elif type_signed(rightarg):
c_check = 'arg2 < 0'
else:
c_check = ''
elif op == '%':
if type_signed(leftarg):
c_check = 'arg1 < 0'
elif type_signed(rightarg):
# This computation has a positive result, so it would
# actually fit just fine, but the C implementation
# makes a mess of it, so better prohibit it.
c_check = 'arg2 < 0'
else:
c_check = ''
else:
c_check = ''
else:
if op == '+':
c_check = 'SAMESIGN(arg1, arg2) && !SAMESIGN(result, arg1)'
elif op == '-':
c_check = '!SAMESIGN(arg1, arg2) && !SAMESIGN(result, arg1)'
else:
c_check = ''
intermediate_type = None
if op == '*':
if type_bits(rettype) < 64:
intermediate_type = next_bigger_type(rettype)
c_check = '({0}) result2 != result2'.format(c_types[rettype])
elif type_unsigned(rettype):
if type_unsigned(leftarg) and type_signed(rightarg):
c_check = '(arg2 < 0) || ('
elif type_signed(leftarg) and type_unsigned(rightarg):
c_check = '(arg1 < 0) || ('
else:
c_check = '('
c_check += '(arg1 != ((uint32) arg1) || arg2 != ((uint32) arg2))'
if type_unsigned(leftarg) or type_unsigned(rightarg):
c_check += ' && (arg2 != 0 && (result / arg2 != arg1))'
else:
c_check += ' && (arg2 != 0 && ((arg2 == -1 && arg1 < 0 && result < 0) || result / arg2 != arg1))'
c_check += ')'
else:
c_check = '(arg1 != ((int32) arg1) || arg2 != ((int32) arg2))'
if type_unsigned(leftarg) or type_unsigned(rightarg):
c_check += ' && (arg2 != 0 && (result / arg2 != arg1))'
else:
c_check += ' && (arg2 != 0 && ((arg2 == -1 && arg1 < 0 && result < 0) || result / arg2 != arg1))'
write_code(f_c, f_sql, leftarg, rightarg, op, rettype, c_check, intermediate_type)
f_test_sql.write("""\
SELECT pg_typeof('1'::{lefttype} {op} '1'::{righttype});
SELECT '1'::{lefttype} {op} '1'::{righttype};
SELECT '3'::{lefttype} {op} '4'::{righttype};
SELECT '5'::{lefttype} {op} '2'::{righttype};
""".format(lefttype=leftarg, op=op, righttype=rightarg))
if not type_unsigned(leftarg) and op in ['+', '-', '*', '/', '%']:
f_test_sql.write("""\
SELECT '-3'::{lefttype} {op} '4'::{righttype};
SELECT '-5'::{lefttype} {op} '2'::{righttype};
""".format(lefttype=leftarg, op=op, righttype=rightarg))
if not type_unsigned(rightarg) and op in ['+', '-', '*', '/', '%']:
f_test_sql.write("""\
SELECT '3'::{lefttype} {op} '-4'::{righttype};
SELECT '5'::{lefttype} {op} '-2'::{righttype};
""".format(lefttype=leftarg, op=op, righttype=rightarg))
if op in ['+', '*']:
f_test_sql.write("SELECT '{max_left}'::{lefttype} {op} '{max_right}'::{righttype};\n"
.format(lefttype=leftarg, op=op, righttype=rightarg,
max_left=max_values[leftarg],
max_right=max_values[rightarg]))
if op in ['/', '%']:
f_test_sql.write("SELECT '5'::{lefttype} {op} '0'::{righttype};\n"
.format(lefttype=leftarg, op=op, righttype=rightarg))
if op in ['%']:
f_test_sql.write("SELECT mod('5'::{lefttype}, '2'::{righttype});\n"
.format(lefttype=leftarg, righttype=rightarg))
def main(pgversion):
f_c = open('operators.c', 'w')
f_sql = open('operators.sql', 'w')
f_test_sql = open('test/sql/operators.sql', 'w')
f_c.write("""\
#include <postgres.h>
#include <fmgr.h>
#include "crockford.h"
""")
if pgversion >= 9.2:
f_c.write("""#include <utils/sortsupport.h>
""")
for argtype in new_types:
f_test_sql.write("""\
SET search_path TO {search_path};
SELECT '55'::{typ};
SELECT '-55'::{typ};
SELECT ''::{typ};
SELECT 'x'::{typ};
SELECT '55 x'::{typ};
""".format(typ=argtype,search_path=test_search_path))
if argtype in too_big:
f_test_sql.write("SELECT '{num}'::{typ};\n".format(typ=argtype, num=max_values[argtype]))
f_test_sql.write("SELECT '{num}'::{typ};\n".format(typ=argtype, num=too_big[argtype]))
if not type_unsigned(argtype):
f_test_sql.write("SELECT '{num}'::{typ};\n".format(typ=argtype, num=min_values[argtype]))
f_test_sql.write("SELECT '-{num}'::{typ};\n".format(typ=argtype, num=too_big[argtype]))
f_test_sql.write("""\
CREATE TABLE test_{typ} (a {typ});
INSERT INTO test_{typ} VALUES ({vals[0]}), ({vals[1]}), ({vals[2]}), ({vals[3]}), ({vals[4]});
SELECT a FROM test_{typ};
SELECT a FROM test_{typ} ORDER BY a;
DROP TABLE test_{typ};
""".format(typ=argtype, vals=(range(1, 6) if type_unsigned(argtype) else range(-2, 3))))
for leftarg in new_types + old_types:
for op in comparison_ops + arithmetic_ops:
f_test_sql.write("""\
SELECT '2'::{typ} {op} 5;
SELECT 2 {op} '5'::{typ};
SELECT '5'::{typ} {op} 2;
SELECT 5 {op} '2'::{typ};
""".format(typ=leftarg, op=op))
for rightarg in new_types + old_types:
if leftarg in old_types and rightarg in old_types:
continue
for op in comparison_ops:
write_code(f_c, f_sql, leftarg, rightarg, op, rettype='boolean')
f_test_sql.write("""\
SELECT '1'::{lefttype} {op} '1'::{righttype};
SELECT '5'::{lefttype} {op} '2'::{righttype};
SELECT '3'::{lefttype} {op} '4'::{righttype};
""".format(lefttype=leftarg, op=op, righttype=rightarg))
f_test_sql.write("\n")
write_cmp_c_function(f_c, leftarg, rightarg)
write_cmp_sql_function(f_sql, leftarg, rightarg)
f_test_sql.write("""\
SELECT bt{lefttype}{righttype}cmp('1'::{lefttype}, '1'::{righttype});
SELECT bt{lefttype}{righttype}cmp('5'::{lefttype}, '2'::{righttype});
SELECT bt{lefttype}{righttype}cmp('3'::{lefttype}, '4'::{righttype});
""".format(lefttype=leftarg, righttype=rightarg))
for op in arithmetic_ops:
write_arithmetic_op(f_c, f_sql, f_test_sql,
op, leftarg, rightarg)
f_test_sql.write("\n")
if leftarg != rightarg:
f_test_sql.write("SELECT CAST('5'::{lefttype} AS {righttype});\n"
.format(lefttype=leftarg, righttype=rightarg))
if type_bits(leftarg) > type_bits(rightarg) \
or (type_bits(leftarg) == type_bits(rightarg) and type_unsigned(leftarg)):
f_test_sql.write("SELECT CAST('{num}'::{lefttype} AS {righttype});\n"
.format(lefttype=leftarg, righttype=rightarg, num=too_big[rightarg]))
if not type_unsigned(leftarg):
f_test_sql.write("SELECT CAST('-5'::{lefttype} AS {righttype});\n"
.format(lefttype=leftarg, righttype=rightarg))
if (not type_unsigned(leftarg) and not type_unsigned(rightarg)) \
and type_bits(leftarg) > type_bits(rightarg):
f_test_sql.write("SELECT CAST('-{num}'::{lefttype} AS {righttype});\n"
.format(lefttype=leftarg, righttype=rightarg, num=too_big[rightarg]))
f_test_sql.write("\n")
c_funcname = leftarg + "_to_" + rightarg
sql_funcname = rightarg
body = "result = arg1;"
if type_bits(leftarg) >= type_bits(rightarg):
body += """
if (({c_type}) result != arg1)
\tereport(ERROR,
\t\t(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
\t\t errmsg("{typ} out of range")));""".format(c_type=c_types[leftarg], typ=rightarg)
if type_unsigned(leftarg) != type_unsigned(rightarg):
body += """
if (!SAMESIGN(result, arg1))
\tereport(ERROR,
\t\t(errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
\t\t errmsg("{typ} out of range")));""".format(typ=rightarg)
write_c_function(f_c, c_funcname, [leftarg], rightarg, body)
write_sql_function(f_sql, c_funcname, [leftarg], rightarg, sql_funcname=sql_funcname)
f_sql.write("CREATE CAST ({lefttype} AS {righttype}) WITH FUNCTION {func}({arg}) AS {context};\n\n"
.format(lefttype=leftarg, righttype=rightarg,
func=sql_funcname,
arg=leftarg,
context=("IMPLICIT" if type_bits(leftarg) < type_bits(rightarg) else "ASSIGNMENT")))
for arg in new_types:
for op in ['&', '|', '#']:
write_code(f_c, f_sql, leftarg=arg, rightarg=arg, op=op, rettype=arg)
f_test_sql.write("""\
SELECT '1'::{lefttype} {op} '1'::{righttype};
SELECT '5'::{lefttype} {op} '2'::{righttype};
SELECT '5'::{lefttype} {op} '4'::{righttype};
""".format(lefttype=arg, op=op, righttype=arg))
for op in ['~']:
write_code(f_c, f_sql, leftarg=None, rightarg=arg, op=op, rettype=arg)
f_test_sql.write("SELECT {op} '6'::{typ};\n".format(op=op, typ=arg))
for op in ['<<', '>>']:
write_code(f_c, f_sql, leftarg=arg, rightarg='int4', op=op, rettype=arg)
f_test_sql.write("""\
SELECT '6'::{typ} {op} 1;
SELECT '6'::{typ} {op} 3;
""".format(typ=arg, op=op))
f_test_sql.write("\n")
write_sortsupport_c_function(f_c, arg, pgversion)
if pgversion >= 9.2:
write_sql_function(f_sql, 'bt' + arg + 'sortsupport', ['internal'], 'void')
write_opclasses_sql(f_sql, arg, pgversion)
for agg, funcname, op in [('min', arg + "smaller", '<'),
('max', arg + "larger", '>')]:
write_c_function(f_c, funcname, [arg]*2, arg,
body="result = (arg1 {op} arg2) ? arg1 : arg2;".format(op=op))
write_sql_function(f_sql, funcname, [arg]*2, arg)
f_test_sql.write("""\
SELECT {funcname}('1'::{typ}, '1'::{typ});
SELECT {funcname}('5'::{typ}, '2'::{typ});
SELECT {funcname}('3'::{typ}, '4'::{typ});
""".format(funcname=funcname, typ=arg))
f_sql.write("CREATE AGGREGATE {agg}({typ}) (SFUNC = {sfunc}, STYPE = {stype}, SORTOP = {sortop});\n\n"
.format(agg=agg, typ=arg, sfunc=funcname, stype=arg, sortop=op))
f_test_sql.write("SELECT {agg}(val::{typ}) FROM (VALUES (3), (5), (1), (4)) AS _ (val);\n\n"
.format(agg=agg, typ=arg))
for agg, funcname in [('bit_and', arg + arg + "and"),
('bit_or', arg + arg + "or")]:
f_sql.write("CREATE AGGREGATE {agg}({typ}) (SFUNC = {sfunc}, STYPE = {stype});\n\n"
.format(agg=agg, typ=arg, sfunc=funcname, stype=arg))
f_test_sql.write("SELECT bit_and(val::{typ}) FROM (VALUES (3), (6), (18)) AS _ (val);\n\n"
.format(typ=arg))
f_test_sql.write("SELECT bit_or(val::{typ}) FROM (VALUES (9), (1), (4)) AS _ (val);\n\n"
.format(typ=arg))
op_fam_btree_elements = []
op_fam_hash_elements = []
write_tests = True
for lefttype in new_types + old_types:
if write_tests:
f_test_sql.write("""
CREATE TABLE test_{typ} (x {typ});
CREATE UNIQUE INDEX test_{typ}_x_key ON test_{typ} USING btree (x);
INSERT INTO test_{typ} VALUES (1), (2), (3), (4), (5), (null);
SET enable_seqscan = off;
SET enable_bitmapscan = off;
""".format(typ=lefttype))
for righttype in new_types + old_types:
if lefttype in old_types and righttype in old_types:
continue
if write_tests:
f_test_sql.write("""
EXPLAIN (COSTS OFF) SELECT * FROM test_{typ} WHERE x = 3::{typ2};
SELECT * FROM test_{typ} WHERE x = 3::{typ2};
""".format(typ=lefttype, typ2=righttype))
if lefttype != righttype:
op_fam_btree_elements.extend([s.format(type1=lefttype, type2=righttype) for s in [
"OPERATOR 1 < ({type1}, {type2})",
"OPERATOR 2 <= ({type1}, {type2})",
"OPERATOR 3 = ({type1}, {type2})",
"OPERATOR 4 >= ({type1}, {type2})",
"OPERATOR 5 > ({type1}, {type2})",
"FUNCTION 1 bt{type1}{type2}cmp({type1}, {type2})",
]])
op_fam_hash_elements.extend([s.format(type1=lefttype, type2=righttype) for s in [
"OPERATOR 1 = ({type1}, {type2})",
]])
if write_tests:
f_test_sql.write("""
RESET enable_seqscan;
RESET enable_bitmapscan;
""")
f_sql.write("ALTER OPERATOR FAMILY integer_ops USING btree ADD\n" +
",\n".join(op_fam_btree_elements) +
";\n\n")
f_sql.write("ALTER OPERATOR FAMILY integer_ops USING hash ADD\n" +
",\n".join(op_fam_hash_elements) +
";\n\n")
f_c.close()
f_sql.close()
f_test_sql.close()
if __name__ == '__main__':
main(pgversion=float(re.match(r'\d+\.\d+', sys.argv[1]).group(0)))