@@ -7,6 +7,7 @@ CREATE TABLE brintest_multi (
77float4col real,
88float8col double precision,
99macaddrcol macaddr,
10+ macaddr8col macaddr8,
1011inetcol inet,
1112cidrcol cidr,
1213datecol date,
@@ -28,6 +29,7 @@ INSERT INTO brintest_multi SELECT
2829(four + 1.0)/(hundred+1),
2930odd::float8 / (tenthous + 1),
3031format('%s:00:%s:00:%s:00', to_hex(odd), to_hex(even), to_hex(hundred))::macaddr,
32+ substr(md5(unique1::text), 1, 16)::macaddr8,
3133inet '10.2.3.4/24' + tenthous,
3234cidr '10.2.3/24' + tenthous,
3335date '1995-08-15' + tenthous,
@@ -69,6 +71,7 @@ CREATE INDEX brinidx_multi ON brintest_multi USING brin (
6971float4col float4_minmax_multi_ops,
7072float8col float8_minmax_multi_ops,
7173macaddrcol macaddr_minmax_multi_ops,
74+ macaddr8col macaddr8_minmax_multi_ops,
7275inetcol inet_minmax_multi_ops,
7376cidrcol inet_minmax_multi_ops,
7477datecol date_minmax_multi_ops,
@@ -91,6 +94,7 @@ CREATE INDEX brinidx_multi ON brintest_multi USING brin (
9194float4col float4_minmax_multi_ops,
9295float8col float8_minmax_multi_ops,
9396macaddrcol macaddr_minmax_multi_ops,
97+ macaddr8col macaddr8_minmax_multi_ops,
9498inetcol inet_minmax_multi_ops,
9599cidrcol inet_minmax_multi_ops,
96100datecol date_minmax_multi_ops,
@@ -172,6 +176,10 @@ INSERT INTO brinopers_multi VALUES
172176 '{>, >=, =, <=, <}',
173177 '{00:00:01:00:00:00, 00:00:01:00:00:00, 2c:00:2d:00:16:00, ff:fe:00:00:00:00, ff:fe:00:00:00:00}',
174178 '{99, 100, 2, 100, 100}'),
179+ ('macaddr8col', 'macaddr8',
180+ '{>, >=, =, <=, <}',
181+ '{b1:d1:0e:7b:af:a4:42:12, d9:35:91:bd:f7:86:0e:1e, 72:8f:20:6c:2a:01:bf:57, 23:e8:46:63:86:07:ad:cb, 13:16:8e:6a:2e:6c:84:b4}',
182+ '{33, 15, 1, 13, 6}'),
175183('inetcol', 'inet',
176184 '{=, <, <=, >, >=}',
177185 '{10.2.14.231/24, 255.255.255.255, 255.255.255.255, 0.0.0.0, 0.0.0.0}',
@@ -319,6 +327,7 @@ INSERT INTO brintest_multi SELECT
319327(four + 1.0)/(hundred+1),
320328odd::float8 / (tenthous + 1),
321329format('%s:00:%s:00:%s:00', to_hex(odd), to_hex(even), to_hex(hundred))::macaddr,
330+ substr(md5(unique1::text), 1, 16)::macaddr8,
322331inet '10.2.3.4' + tenthous,
323332cidr '10.2.3/24' + tenthous,
324333date '1995-08-15' + tenthous,