summaryrefslogtreecommitdiffstats
path: root/doc/src/sgml/man7/CREATE_TYPE.7
blob: 318c4ced73b71e82c00a403074297070b04231aa (plain)
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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
'\" t
.\"     Title: CREATE TYPE
.\"    Author: The PostgreSQL Global Development Group
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\"      Date: 2023
.\"    Manual: PostgreSQL 15.5 Documentation
.\"    Source: PostgreSQL 15.5
.\"  Language: English
.\"
.TH "CREATE TYPE" "7" "2023" "PostgreSQL 15.5" "PostgreSQL 15.5 Documentation"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
CREATE_TYPE \- define a new data type
.SH "SYNOPSIS"
.sp
.nf
CREATE TYPE \fIname\fR AS
    ( [ \fIattribute_name\fR \fIdata_type\fR [ COLLATE \fIcollation\fR ] [, \&.\&.\&. ] ] )

CREATE TYPE \fIname\fR AS ENUM
    ( [ \*(Aq\fIlabel\fR\*(Aq [, \&.\&.\&. ] ] )

CREATE TYPE \fIname\fR AS RANGE (
    SUBTYPE = \fIsubtype\fR
    [ , SUBTYPE_OPCLASS = \fIsubtype_operator_class\fR ]
    [ , COLLATION = \fIcollation\fR ]
    [ , CANONICAL = \fIcanonical_function\fR ]
    [ , SUBTYPE_DIFF = \fIsubtype_diff_function\fR ]
    [ , MULTIRANGE_TYPE_NAME = \fImultirange_type_name\fR ]
)

CREATE TYPE \fIname\fR (
    INPUT = \fIinput_function\fR,
    OUTPUT = \fIoutput_function\fR
    [ , RECEIVE = \fIreceive_function\fR ]
    [ , SEND = \fIsend_function\fR ]
    [ , TYPMOD_IN = \fItype_modifier_input_function\fR ]
    [ , TYPMOD_OUT = \fItype_modifier_output_function\fR ]
    [ , ANALYZE = \fIanalyze_function\fR ]
    [ , SUBSCRIPT = \fIsubscript_function\fR ]
    [ , INTERNALLENGTH = { \fIinternallength\fR | VARIABLE } ]
    [ , PASSEDBYVALUE ]
    [ , ALIGNMENT = \fIalignment\fR ]
    [ , STORAGE = \fIstorage\fR ]
    [ , LIKE = \fIlike_type\fR ]
    [ , CATEGORY = \fIcategory\fR ]
    [ , PREFERRED = \fIpreferred\fR ]
    [ , DEFAULT = \fIdefault\fR ]
    [ , ELEMENT = \fIelement\fR ]
    [ , DELIMITER = \fIdelimiter\fR ]
    [ , COLLATABLE = \fIcollatable\fR ]
)

CREATE TYPE \fIname\fR
.fi
.SH "DESCRIPTION"
.PP
\fBCREATE TYPE\fR
registers a new data type for use in the current database\&. The user who defines a type becomes its owner\&.
.PP
If a schema name is given then the type is created in the specified schema\&. Otherwise it is created in the current schema\&. The type name must be distinct from the name of any existing type or domain in the same schema\&. (Because tables have associated data types, the type name must also be distinct from the name of any existing table in the same schema\&.)
.PP
There are five forms of
\fBCREATE TYPE\fR, as shown in the syntax synopsis above\&. They respectively create a
composite type, an
enum type, a
range type, a
base type, or a
shell type\&. The first four of these are discussed in turn below\&. A shell type is simply a placeholder for a type to be defined later; it is created by issuing
\fBCREATE TYPE\fR
with no parameters except for the type name\&. Shell types are needed as forward references when creating range types and base types, as discussed in those sections\&.
.SS "Composite Types"
.PP
The first form of
\fBCREATE TYPE\fR
creates a composite type\&. The composite type is specified by a list of attribute names and data types\&. An attribute\*(Aqs collation can be specified too, if its data type is collatable\&. A composite type is essentially the same as the row type of a table, but using
\fBCREATE TYPE\fR
avoids the need to create an actual table when all that is wanted is to define a type\&. A stand\-alone composite type is useful, for example, as the argument or return type of a function\&.
.PP
To be able to create a composite type, you must have
USAGE
privilege on all attribute types\&.
.SS "Enumerated Types"
.PP
The second form of
\fBCREATE TYPE\fR
creates an enumerated (enum) type, as described in
Section\ \&8.7\&. Enum types take a list of quoted labels, each of which must be less than
NAMEDATALEN
bytes long (64 bytes in a standard
PostgreSQL
build)\&. (It is possible to create an enumerated type with zero labels, but such a type cannot be used to hold values before at least one label is added using
\fBALTER TYPE\fR\&.)
.SS "Range Types"
.PP
The third form of
\fBCREATE TYPE\fR
creates a new range type, as described in
Section\ \&8.17\&.
.PP
The range type\*(Aqs
\fIsubtype\fR
can be any type with an associated b\-tree operator class (to determine the ordering of values for the range type)\&. Normally the subtype\*(Aqs default b\-tree operator class is used to determine ordering; to use a non\-default operator class, specify its name with
\fIsubtype_opclass\fR\&. If the subtype is collatable, and you want to use a non\-default collation in the range\*(Aqs ordering, specify the desired collation with the
\fIcollation\fR
option\&.
.PP
The optional
\fIcanonical\fR
function must take one argument of the range type being defined, and return a value of the same type\&. This is used to convert range values to a canonical form, when applicable\&. See
Section\ \&8.17.8
for more information\&. Creating a
\fIcanonical\fR
function is a bit tricky, since it must be defined before the range type can be declared\&. To do this, you must first create a shell type, which is a placeholder type that has no properties except a name and an owner\&. This is done by issuing the command
CREATE TYPE \fIname\fR, with no additional parameters\&. Then the function can be declared using the shell type as argument and result, and finally the range type can be declared using the same name\&. This automatically replaces the shell type entry with a valid range type\&.
.PP
The optional
\fIsubtype_diff\fR
function must take two values of the
\fIsubtype\fR
type as argument, and return a
double precision
value representing the difference between the two given values\&. While this is optional, providing it allows much greater efficiency of GiST indexes on columns of the range type\&. See
Section\ \&8.17.8
for more information\&.
.PP
The optional
\fImultirange_type_name\fR
parameter specifies the name of the corresponding multirange type\&. If not specified, this name is chosen automatically as follows\&. If the range type name contains the substring
range, then the multirange type name is formed by replacement of the
range
substring with
multirange
in the range type name\&. Otherwise, the multirange type name is formed by appending a
_multirange
suffix to the range type name\&.
.SS "Base Types"
.PP
The fourth form of
\fBCREATE TYPE\fR
creates a new base type (scalar type)\&. To create a new base type, you must be a superuser\&. (This restriction is made because an erroneous type definition could confuse or even crash the server\&.)
.PP
The parameters can appear in any order, not only that illustrated above, and most are optional\&. You must register two or more functions (using
\fBCREATE FUNCTION\fR) before defining the type\&. The support functions
\fIinput_function\fR
and
\fIoutput_function\fR
are required, while the functions
\fIreceive_function\fR,
\fIsend_function\fR,
\fItype_modifier_input_function\fR,
\fItype_modifier_output_function\fR,
\fIanalyze_function\fR, and
\fIsubscript_function\fR
are optional\&. Generally these functions have to be coded in C or another low\-level language\&.
.PP
The
\fIinput_function\fR
converts the type\*(Aqs external textual representation to the internal representation used by the operators and functions defined for the type\&.
\fIoutput_function\fR
performs the reverse transformation\&. The input function can be declared as taking one argument of type
cstring, or as taking three arguments of types
cstring,
oid,
integer\&. The first argument is the input text as a C string, the second argument is the type\*(Aqs own OID (except for array types, which instead receive their element type\*(Aqs OID), and the third is the
typmod
of the destination column, if known (\-1 will be passed if not)\&. The input function must return a value of the data type itself\&. Usually, an input function should be declared STRICT; if it is not, it will be called with a NULL first parameter when reading a NULL input value\&. The function must still return NULL in this case, unless it raises an error\&. (This case is mainly meant to support domain input functions, which might need to reject NULL inputs\&.) The output function must be declared as taking one argument of the new data type\&. The output function must return type
cstring\&. Output functions are not invoked for NULL values\&.
.PP
The optional
\fIreceive_function\fR
converts the type\*(Aqs external binary representation to the internal representation\&. If this function is not supplied, the type cannot participate in binary input\&. The binary representation should be chosen to be cheap to convert to internal form, while being reasonably portable\&. (For example, the standard integer data types use network byte order as the external binary representation, while the internal representation is in the machine\*(Aqs native byte order\&.) The receive function should perform adequate checking to ensure that the value is valid\&. The receive function can be declared as taking one argument of type
internal, or as taking three arguments of types
internal,
oid,
integer\&. The first argument is a pointer to a
StringInfo
buffer holding the received byte string; the optional arguments are the same as for the text input function\&. The receive function must return a value of the data type itself\&. Usually, a receive function should be declared STRICT; if it is not, it will be called with a NULL first parameter when reading a NULL input value\&. The function must still return NULL in this case, unless it raises an error\&. (This case is mainly meant to support domain receive functions, which might need to reject NULL inputs\&.) Similarly, the optional
\fIsend_function\fR
converts from the internal representation to the external binary representation\&. If this function is not supplied, the type cannot participate in binary output\&. The send function must be declared as taking one argument of the new data type\&. The send function must return type
bytea\&. Send functions are not invoked for NULL values\&.
.PP
You should at this point be wondering how the input and output functions can be declared to have results or arguments of the new type, when they have to be created before the new type can be created\&. The answer is that the type should first be defined as a
shell type, which is a placeholder type that has no properties except a name and an owner\&. This is done by issuing the command
CREATE TYPE \fIname\fR, with no additional parameters\&. Then the C I/O functions can be defined referencing the shell type\&. Finally,
\fBCREATE TYPE\fR
with a full definition replaces the shell entry with a complete, valid type definition, after which the new type can be used normally\&.
.PP
The optional
\fItype_modifier_input_function\fR
and
\fItype_modifier_output_function\fR
are needed if the type supports modifiers, that is optional constraints attached to a type declaration, such as
char(5)
or
numeric(30,2)\&.
PostgreSQL
allows user\-defined types to take one or more simple constants or identifiers as modifiers\&. However, this information must be capable of being packed into a single non\-negative integer value for storage in the system catalogs\&. The
\fItype_modifier_input_function\fR
is passed the declared modifier(s) in the form of a
cstring
array\&. It must check the values for validity (throwing an error if they are wrong), and if they are correct, return a single non\-negative
integer
value that will be stored as the column
\(lqtypmod\(rq\&. Type modifiers will be rejected if the type does not have a
\fItype_modifier_input_function\fR\&. The
\fItype_modifier_output_function\fR
converts the internal integer typmod value back to the correct form for user display\&. It must return a
cstring
value that is the exact string to append to the type name; for example
numeric\*(Aqs function might return
(30,2)\&. It is allowed to omit the
\fItype_modifier_output_function\fR, in which case the default display format is just the stored typmod integer value enclosed in parentheses\&.
.PP
The optional
\fIanalyze_function\fR
performs type\-specific statistics collection for columns of the data type\&. By default,
\fBANALYZE\fR
will attempt to gather statistics using the type\*(Aqs
\(lqequals\(rq
and
\(lqless\-than\(rq
operators, if there is a default b\-tree operator class for the type\&. For non\-scalar types this behavior is likely to be unsuitable, so it can be overridden by specifying a custom analysis function\&. The analysis function must be declared to take a single argument of type
internal, and return a
boolean
result\&. The detailed API for analysis functions appears in
src/include/commands/vacuum\&.h\&.
.PP
The optional
\fIsubscript_function\fR
allows the data type to be subscripted in SQL commands\&. Specifying this function does not cause the type to be considered a
\(lqtrue\(rq
array type; for example, it will not be a candidate for the result type of
ARRAY[]
constructs\&. But if subscripting a value of the type is a natural notation for extracting data from it, then a
\fIsubscript_function\fR
can be written to define what that means\&. The subscript function must be declared to take a single argument of type
internal, and return an
internal
result, which is a pointer to a struct of methods (functions) that implement subscripting\&. The detailed API for subscript functions appears in
src/include/nodes/subscripting\&.h\&. It may also be useful to read the array implementation in
src/backend/utils/adt/arraysubs\&.c, or the simpler code in
contrib/hstore/hstore_subs\&.c\&. Additional information appears in
Array Types
below\&.
.PP
While the details of the new type\*(Aqs internal representation are only known to the I/O functions and other functions you create to work with the type, there are several properties of the internal representation that must be declared to
PostgreSQL\&. Foremost of these is
\fIinternallength\fR\&. Base data types can be fixed\-length, in which case
\fIinternallength\fR
is a positive integer, or variable\-length, indicated by setting
\fIinternallength\fR
to
VARIABLE\&. (Internally, this is represented by setting
typlen
to \-1\&.) The internal representation of all variable\-length types must start with a 4\-byte integer giving the total length of this value of the type\&. (Note that the length field is often encoded, as described in
Section\ \&73.2; it\*(Aqs unwise to access it directly\&.)
.PP
The optional flag
PASSEDBYVALUE
indicates that values of this data type are passed by value, rather than by reference\&. Types passed by value must be fixed\-length, and their internal representation cannot be larger than the size of the
Datum
type (4 bytes on some machines, 8 bytes on others)\&.
.PP
The
\fIalignment\fR
parameter specifies the storage alignment required for the data type\&. The allowed values equate to alignment on 1, 2, 4, or 8 byte boundaries\&. Note that variable\-length types must have an alignment of at least 4, since they necessarily contain an
int4
as their first component\&.
.PP
The
\fIstorage\fR
parameter allows selection of storage strategies for variable\-length data types\&. (Only
plain
is allowed for fixed\-length types\&.)
plain
specifies that data of the type will always be stored in\-line and not compressed\&.
extended
specifies that the system will first try to compress a long data value, and will move the value out of the main table row if it\*(Aqs still too long\&.
external
allows the value to be moved out of the main table, but the system will not try to compress it\&.
main
allows compression, but discourages moving the value out of the main table\&. (Data items with this storage strategy might still be moved out of the main table if there is no other way to make a row fit, but they will be kept in the main table preferentially over
extended
and
external
items\&.)
.PP
All
\fIstorage\fR
values other than
plain
imply that the functions of the data type can handle values that have been
toasted, as described in
Section\ \&73.2
and
Section\ \&38.13.1\&. The specific other value given merely determines the default TOAST storage strategy for columns of a toastable data type; users can pick other strategies for individual columns using
ALTER TABLE SET STORAGE\&.
.PP
The
\fIlike_type\fR
parameter provides an alternative method for specifying the basic representation properties of a data type: copy them from some existing type\&. The values of
\fIinternallength\fR,
\fIpassedbyvalue\fR,
\fIalignment\fR, and
\fIstorage\fR
are copied from the named type\&. (It is possible, though usually undesirable, to override some of these values by specifying them along with the
LIKE
clause\&.) Specifying representation this way is especially useful when the low\-level implementation of the new type
\(lqpiggybacks\(rq
on an existing type in some fashion\&.
.PP
The
\fIcategory\fR
and
\fIpreferred\fR
parameters can be used to help control which implicit cast will be applied in ambiguous situations\&. Each data type belongs to a category named by a single ASCII character, and each type is either
\(lqpreferred\(rq
or not within its category\&. The parser will prefer casting to preferred types (but only from other types within the same category) when this rule is helpful in resolving overloaded functions or operators\&. For more details see
Chapter\ \&10\&. For types that have no implicit casts to or from any other types, it is sufficient to leave these settings at the defaults\&. However, for a group of related types that have implicit casts, it is often helpful to mark them all as belonging to a category and select one or two of the
\(lqmost general\(rq
types as being preferred within the category\&. The
\fIcategory\fR
parameter is especially useful when adding a user\-defined type to an existing built\-in category, such as the numeric or string types\&. However, it is also possible to create new entirely\-user\-defined type categories\&. Select any ASCII character other than an upper\-case letter to name such a category\&.
.PP
A default value can be specified, in case a user wants columns of the data type to default to something other than the null value\&. Specify the default with the
DEFAULT
key word\&. (Such a default can be overridden by an explicit
DEFAULT
clause attached to a particular column\&.)
.PP
To indicate that a type is a fixed\-length array type, specify the type of the array elements using the
ELEMENT
key word\&. For example, to define an array of 4\-byte integers (int4), specify
ELEMENT = int4\&. For more details, see
Array Types
below\&.
.PP
To indicate the delimiter to be used between values in the external representation of arrays of this type,
\fIdelimiter\fR
can be set to a specific character\&. The default delimiter is the comma (,)\&. Note that the delimiter is associated with the array element type, not the array type itself\&.
.PP
If the optional Boolean parameter
\fIcollatable\fR
is true, column definitions and expressions of the type may carry collation information through use of the
COLLATE
clause\&. It is up to the implementations of the functions operating on the type to actually make use of the collation information; this does not happen automatically merely by marking the type collatable\&.
.SS "Array Types"
.PP
Whenever a user\-defined type is created,
PostgreSQL
automatically creates an associated array type, whose name consists of the element type\*(Aqs name prepended with an underscore, and truncated if necessary to keep it less than
NAMEDATALEN
bytes long\&. (If the name so generated collides with an existing type name, the process is repeated until a non\-colliding name is found\&.) This implicitly\-created array type is variable length and uses the built\-in input and output functions
array_in
and
array_out\&. Furthermore, this type is what the system uses for constructs such as
ARRAY[]
over the user\-defined type\&. The array type tracks any changes in its element type\*(Aqs owner or schema, and is dropped if the element type is\&.
.PP
You might reasonably ask why there is an
\fBELEMENT\fR
option, if the system makes the correct array type automatically\&. The main case where it\*(Aqs useful to use
\fBELEMENT\fR
is when you are making a fixed\-length type that happens to be internally an array of a number of identical things, and you want to allow these things to be accessed directly by subscripting, in addition to whatever operations you plan to provide for the type as a whole\&. For example, type
point
is represented as just two floating\-point numbers, which can be accessed using
point[0]
and
point[1]\&. Note that this facility only works for fixed\-length types whose internal form is exactly a sequence of identical fixed\-length fields\&. For historical reasons (i\&.e\&., this is clearly wrong but it\*(Aqs far too late to change it), subscripting of fixed\-length array types starts from zero, rather than from one as for variable\-length arrays\&.
.PP
Specifying the
\fBSUBSCRIPT\fR
option allows a data type to be subscripted, even though the system does not otherwise regard it as an array type\&. The behavior just described for fixed\-length arrays is actually implemented by the
\fBSUBSCRIPT\fR
handler function
\fBraw_array_subscript_handler\fR, which is used automatically if you specify
\fBELEMENT\fR
for a fixed\-length type without also writing
\fBSUBSCRIPT\fR\&.
.PP
When specifying a custom
\fBSUBSCRIPT\fR
function, it is not necessary to specify
\fBELEMENT\fR
unless the
\fBSUBSCRIPT\fR
handler function needs to consult
typelem
to find out what to return\&. Be aware that specifying
\fBELEMENT\fR
causes the system to assume that the new type contains, or is somehow physically dependent on, the element type; thus for example changing properties of the element type won\*(Aqt be allowed if there are any columns of the dependent type\&.
.SH "PARAMETERS"
.PP
\fIname\fR
.RS 4
The name (optionally schema\-qualified) of a type to be created\&.
.RE
.PP
\fIattribute_name\fR
.RS 4
The name of an attribute (column) for the composite type\&.
.RE
.PP
\fIdata_type\fR
.RS 4
The name of an existing data type to become a column of the composite type\&.
.RE
.PP
\fIcollation\fR
.RS 4
The name of an existing collation to be associated with a column of a composite type, or with a range type\&.
.RE
.PP
\fIlabel\fR
.RS 4
A string literal representing the textual label associated with one value of an enum type\&.
.RE
.PP
\fIsubtype\fR
.RS 4
The name of the element type that the range type will represent ranges of\&.
.RE
.PP
\fIsubtype_operator_class\fR
.RS 4
The name of a b\-tree operator class for the subtype\&.
.RE
.PP
\fIcanonical_function\fR
.RS 4
The name of the canonicalization function for the range type\&.
.RE
.PP
\fIsubtype_diff_function\fR
.RS 4
The name of a difference function for the subtype\&.
.RE
.PP
\fImultirange_type_name\fR
.RS 4
The name of the corresponding multirange type\&.
.RE
.PP
\fIinput_function\fR
.RS 4
The name of a function that converts data from the type\*(Aqs external textual form to its internal form\&.
.RE
.PP
\fIoutput_function\fR
.RS 4
The name of a function that converts data from the type\*(Aqs internal form to its external textual form\&.
.RE
.PP
\fIreceive_function\fR
.RS 4
The name of a function that converts data from the type\*(Aqs external binary form to its internal form\&.
.RE
.PP
\fIsend_function\fR
.RS 4
The name of a function that converts data from the type\*(Aqs internal form to its external binary form\&.
.RE
.PP
\fItype_modifier_input_function\fR
.RS 4
The name of a function that converts an array of modifier(s) for the type into internal form\&.
.RE
.PP
\fItype_modifier_output_function\fR
.RS 4
The name of a function that converts the internal form of the type\*(Aqs modifier(s) to external textual form\&.
.RE
.PP
\fIanalyze_function\fR
.RS 4
The name of a function that performs statistical analysis for the data type\&.
.RE
.PP
\fIsubscript_function\fR
.RS 4
The name of a function that defines what subscripting a value of the data type does\&.
.RE
.PP
\fIinternallength\fR
.RS 4
A numeric constant that specifies the length in bytes of the new type\*(Aqs internal representation\&. The default assumption is that it is variable\-length\&.
.RE
.PP
\fIalignment\fR
.RS 4
The storage alignment requirement of the data type\&. If specified, it must be
char,
int2,
int4, or
double; the default is
int4\&.
.RE
.PP
\fIstorage\fR
.RS 4
The storage strategy for the data type\&. If specified, must be
plain,
external,
extended, or
main; the default is
plain\&.
.RE
.PP
\fIlike_type\fR
.RS 4
The name of an existing data type that the new type will have the same representation as\&. The values of
\fIinternallength\fR,
\fIpassedbyvalue\fR,
\fIalignment\fR, and
\fIstorage\fR
are copied from that type, unless overridden by explicit specification elsewhere in this
\fBCREATE TYPE\fR
command\&.
.RE
.PP
\fIcategory\fR
.RS 4
The category code (a single ASCII character) for this type\&. The default is
\*(AqU\*(Aq
for
\(lquser\-defined type\(rq\&. Other standard category codes can be found in
Table\ \&53.65\&. You may also choose other ASCII characters in order to create custom categories\&.
.RE
.PP
\fIpreferred\fR
.RS 4
True if this type is a preferred type within its type category, else false\&. The default is false\&. Be very careful about creating a new preferred type within an existing type category, as this could cause surprising changes in behavior\&.
.RE
.PP
\fIdefault\fR
.RS 4
The default value for the data type\&. If this is omitted, the default is null\&.
.RE
.PP
\fIelement\fR
.RS 4
The type being created is an array; this specifies the type of the array elements\&.
.RE
.PP
\fIdelimiter\fR
.RS 4
The delimiter character to be used between values in arrays made of this type\&.
.RE
.PP
\fIcollatable\fR
.RS 4
True if this type\*(Aqs operations can use collation information\&. The default is false\&.
.RE
.SH "NOTES"
.PP
Because there are no restrictions on use of a data type once it\*(Aqs been created, creating a base type or range type is tantamount to granting public execute permission on the functions mentioned in the type definition\&. This is usually not an issue for the sorts of functions that are useful in a type definition\&. But you might want to think twice before designing a type in a way that would require
\(lqsecret\(rq
information to be used while converting it to or from external form\&.
.PP
Before
PostgreSQL
version 8\&.3, the name of a generated array type was always exactly the element type\*(Aqs name with one underscore character (_) prepended\&. (Type names were therefore restricted in length to one fewer character than other names\&.) While this is still usually the case, the array type name may vary from this in case of maximum\-length names or collisions with user type names that begin with underscore\&. Writing code that depends on this convention is therefore deprecated\&. Instead, use
pg_type\&.typarray
to locate the array type associated with a given type\&.
.PP
It may be advisable to avoid using type and table names that begin with underscore\&. While the server will change generated array type names to avoid collisions with user\-given names, there is still risk of confusion, particularly with old client software that may assume that type names beginning with underscores always represent arrays\&.
.PP
Before
PostgreSQL
version 8\&.2, the shell\-type creation syntax
CREATE TYPE \fIname\fR
did not exist\&. The way to create a new base type was to create its input function first\&. In this approach,
PostgreSQL
will first see the name of the new data type as the return type of the input function\&. The shell type is implicitly created in this situation, and then it can be referenced in the definitions of the remaining I/O functions\&. This approach still works, but is deprecated and might be disallowed in some future release\&. Also, to avoid accidentally cluttering the catalogs with shell types as a result of simple typos in function definitions, a shell type will only be made this way when the input function is written in C\&.
.SH "EXAMPLES"
.PP
This example creates a composite type and uses it in a function definition:
.sp
.if n \{\
.RS 4
.\}
.nf
CREATE TYPE compfoo AS (f1 int, f2 text);

CREATE FUNCTION getfoo() RETURNS SETOF compfoo AS $$
    SELECT fooid, fooname FROM foo
$$ LANGUAGE SQL;
.fi
.if n \{\
.RE
.\}
.PP
This example creates an enumerated type and uses it in a table definition:
.sp
.if n \{\
.RS 4
.\}
.nf
CREATE TYPE bug_status AS ENUM (\*(Aqnew\*(Aq, \*(Aqopen\*(Aq, \*(Aqclosed\*(Aq);

CREATE TABLE bug (
    id serial,
    description text,
    status bug_status
);
.fi
.if n \{\
.RE
.\}
.PP
This example creates a range type:
.sp
.if n \{\
.RS 4
.\}
.nf
CREATE TYPE float8_range AS RANGE (subtype = float8, subtype_diff = float8mi);
.fi
.if n \{\
.RE
.\}
.PP
This example creates the base data type
box
and then uses the type in a table definition:
.sp
.if n \{\
.RS 4
.\}
.nf
CREATE TYPE box;

CREATE FUNCTION my_box_in_function(cstring) RETURNS box AS \&.\&.\&. ;
CREATE FUNCTION my_box_out_function(box) RETURNS cstring AS \&.\&.\&. ;

CREATE TYPE box (
    INTERNALLENGTH = 16,
    INPUT = my_box_in_function,
    OUTPUT = my_box_out_function
);

CREATE TABLE myboxes (
    id integer,
    description box
);
.fi
.if n \{\
.RE
.\}
.PP
If the internal structure of
box
were an array of four
float4
elements, we might instead use:
.sp
.if n \{\
.RS 4
.\}
.nf
CREATE TYPE box (
    INTERNALLENGTH = 16,
    INPUT = my_box_in_function,
    OUTPUT = my_box_out_function,
    ELEMENT = float4
);
.fi
.if n \{\
.RE
.\}
.sp
which would allow a box value\*(Aqs component numbers to be accessed by subscripting\&. Otherwise the type behaves the same as before\&.
.PP
This example creates a large object type and uses it in a table definition:
.sp
.if n \{\
.RS 4
.\}
.nf
CREATE TYPE bigobj (
    INPUT = lo_filein, OUTPUT = lo_fileout,
    INTERNALLENGTH = VARIABLE
);
CREATE TABLE big_objs (
    id integer,
    obj bigobj
);
.fi
.if n \{\
.RE
.\}
.PP
More examples, including suitable input and output functions, are in
Section\ \&38.13\&.
.SH "COMPATIBILITY"
.PP
The first form of the
\fBCREATE TYPE\fR
command, which creates a composite type, conforms to the
SQL
standard\&. The other forms are
PostgreSQL
extensions\&. The
\fBCREATE TYPE\fR
statement in the
SQL
standard also defines other forms that are not implemented in
PostgreSQL\&.
.PP
The ability to create a composite type with zero attributes is a
PostgreSQL\-specific deviation from the standard (analogous to the same case in
\fBCREATE TABLE\fR)\&.
.SH "SEE ALSO"
ALTER TYPE (\fBALTER_TYPE\fR(7)), CREATE DOMAIN (\fBCREATE_DOMAIN\fR(7)), CREATE FUNCTION (\fBCREATE_FUNCTION\fR(7)), DROP TYPE (\fBDROP_TYPE\fR(7))