File tree Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change 14
14
15
15
/* Information about functions that we put in the cache */
16
16
static CustomTypeInfo typeinfo [_CUSTOM_TYPE_MAX_INDEX ] = {
17
- [CUSTOM_TYPE_TS_INTERVAL ] = {
18
- .schema_name = INTERNAL_SCHEMA_NAME ,
19
- .type_name = "ts_interval" ,
20
- .type_oid = InvalidOid ,
21
- },
22
17
[CUSTOM_TYPE_COMPRESSED_DATA ] = {
23
18
.schema_name = INTERNAL_SCHEMA_NAME ,
24
19
.type_name = "compressed_data" ,
25
20
.type_oid = InvalidOid ,
26
21
},
27
- [CUSTOM_TYPE_SEGMENT_META_MIN_MAX ] = {
28
- .schema_name = INTERNAL_SCHEMA_NAME ,
29
- .type_name = "segment_meta_min_max" ,
30
- .type_oid = InvalidOid ,
31
- }
32
22
};
33
23
34
24
extern CustomTypeInfo *
Original file line number Diff line number Diff line change 10
10
11
11
typedef enum CustomType
12
12
{
13
- CUSTOM_TYPE_TS_INTERVAL = 0 ,
14
- CUSTOM_TYPE_COMPRESSED_DATA ,
15
- CUSTOM_TYPE_SEGMENT_META_MIN_MAX ,
13
+ CUSTOM_TYPE_COMPRESSED_DATA = 0
16
14
17
15
_CUSTOM_TYPE_MAX_INDEX
18
16
} CustomType ;
You can’t perform that action at this time.
0 commit comments