~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

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
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>CREATE TYPE</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 9.1.8 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="SQL Commands"
HREF="sql-commands.html"><LINK
REL="PREVIOUS"
TITLE="CREATE TRIGGER"
HREF="sql-createtrigger.html"><LINK
REL="NEXT"
TITLE="CREATE USER"
HREF="sql-createuser.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2013-02-04T21:38:53"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
><A
HREF="index.html"
>PostgreSQL 9.1.8 Documentation</A
></TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
TITLE="CREATE TRIGGER"
HREF="sql-createtrigger.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="20%"
ALIGN="right"
VALIGN="top"
><A
TITLE="CREATE USER"
HREF="sql-createuser.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="SQL-CREATETYPE"
></A
>CREATE TYPE</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN68981"
></A
><H2
>Name</H2
>CREATE TYPE&nbsp;--&nbsp;define a new data type</DIV
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN68986"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>CREATE TYPE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> AS
    ( [ <TT
CLASS="REPLACEABLE"
><I
>attribute_name</I
></TT
> <TT
CLASS="REPLACEABLE"
><I
>data_type</I
></TT
> [ COLLATE <TT
CLASS="REPLACEABLE"
><I
>collation</I
></TT
> ] [, ... ] ] )

CREATE TYPE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> AS ENUM
    ( [ '<TT
CLASS="REPLACEABLE"
><I
>label</I
></TT
>' [, ... ] ] )

CREATE TYPE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> (
    INPUT = <TT
CLASS="REPLACEABLE"
><I
>input_function</I
></TT
>,
    OUTPUT = <TT
CLASS="REPLACEABLE"
><I
>output_function</I
></TT
>
    [ , RECEIVE = <TT
CLASS="REPLACEABLE"
><I
>receive_function</I
></TT
> ]
    [ , SEND = <TT
CLASS="REPLACEABLE"
><I
>send_function</I
></TT
> ]
    [ , TYPMOD_IN = <TT
CLASS="REPLACEABLE"
><I
>type_modifier_input_function</I
></TT
> ]
    [ , TYPMOD_OUT = <TT
CLASS="REPLACEABLE"
><I
>type_modifier_output_function</I
></TT
> ]
    [ , ANALYZE = <TT
CLASS="REPLACEABLE"
><I
>analyze_function</I
></TT
> ]
    [ , INTERNALLENGTH = { <TT
CLASS="REPLACEABLE"
><I
>internallength</I
></TT
> | VARIABLE } ]
    [ , PASSEDBYVALUE ]
    [ , ALIGNMENT = <TT
CLASS="REPLACEABLE"
><I
>alignment</I
></TT
> ]
    [ , STORAGE = <TT
CLASS="REPLACEABLE"
><I
>storage</I
></TT
> ]
    [ , LIKE = <TT
CLASS="REPLACEABLE"
><I
>like_type</I
></TT
> ]
    [ , CATEGORY = <TT
CLASS="REPLACEABLE"
><I
>category</I
></TT
> ]
    [ , PREFERRED = <TT
CLASS="REPLACEABLE"
><I
>preferred</I
></TT
> ]
    [ , DEFAULT = <TT
CLASS="REPLACEABLE"
><I
>default</I
></TT
> ]
    [ , ELEMENT = <TT
CLASS="REPLACEABLE"
><I
>element</I
></TT
> ]
    [ , DELIMITER = <TT
CLASS="REPLACEABLE"
><I
>delimiter</I
></TT
> ]
    [ , COLLATABLE = <TT
CLASS="REPLACEABLE"
><I
>collatable</I
></TT
> ]
)

CREATE TYPE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN69013"
></A
><H2
>Description</H2
><P
>   <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> registers a new data type for use in
   the current database.  The user who defines a type becomes its
   owner.
  </P
><P
>   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.)
  </P
><DIV
CLASS="REFSECT2"
><A
NAME="AEN69018"
></A
><H3
>Composite Types</H3
><P
>   The first form of <TT
CLASS="COMMAND"
>CREATE TYPE</TT
>
   creates a composite type.
   The composite type is specified by a list of attribute names and data types.
   An attribute's 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 <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> 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.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="SQL-CREATETYPE-ENUM"
></A
><H3
>Enumerated Types</H3
><P
>    The second form of <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> creates an enumerated
    (enum) type, as described in <A
HREF="datatype-enum.html"
>Section 8.7</A
>.
    Enum types take a list of one or more quoted labels, each of which
    must be less than <TT
CLASS="SYMBOL"
>NAMEDATALEN</TT
> bytes long (64 in a standard
    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> build).
   </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN69030"
></A
><H3
>Base Types</H3
><P
>   The third form of <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> 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.)
  </P
><P
>   The parameters can appear in any order, not only that
   illustrated above, and most are optional.  You must register
   two or more functions (using <TT
CLASS="COMMAND"
>CREATE FUNCTION</TT
>) before
   defining the type.  The support functions
   <TT
CLASS="REPLACEABLE"
><I
>input_function</I
></TT
> and
   <TT
CLASS="REPLACEABLE"
><I
>output_function</I
></TT
>
   are required, while the functions
   <TT
CLASS="REPLACEABLE"
><I
>receive_function</I
></TT
>,
   <TT
CLASS="REPLACEABLE"
><I
>send_function</I
></TT
>,
   <TT
CLASS="REPLACEABLE"
><I
>type_modifier_input_function</I
></TT
>,
   <TT
CLASS="REPLACEABLE"
><I
>type_modifier_output_function</I
></TT
> and
   <TT
CLASS="REPLACEABLE"
><I
>analyze_function</I
></TT
>
   are optional.  Generally these functions have to be coded in C
   or another low-level language.
  </P
><P
>   The <TT
CLASS="REPLACEABLE"
><I
>input_function</I
></TT
>
   converts the type's external textual representation to the internal
   representation used by the operators and functions defined for the type.
   <TT
CLASS="REPLACEABLE"
><I
>output_function</I
></TT
>
   performs the reverse transformation.  The input function can be
   declared as taking one argument of type <TT
CLASS="TYPE"
>cstring</TT
>,
   or as taking three arguments of types
   <TT
CLASS="TYPE"
>cstring</TT
>, <TT
CLASS="TYPE"
>oid</TT
>, <TT
CLASS="TYPE"
>integer</TT
>.
   The first argument is the input text as a C string, the second
   argument is the type's own OID (except for array types, which instead
   receive their element type's OID),
   and the third is the <TT
CLASS="LITERAL"
>typmod</TT
> 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 <TT
CLASS="TYPE"
>cstring</TT
>.
   Output functions are not invoked for NULL values.
  </P
><P
>   The optional <TT
CLASS="REPLACEABLE"
><I
>receive_function</I
></TT
>
   converts the type's 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's 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
   <TT
CLASS="TYPE"
>internal</TT
>, or as taking three arguments of types
   <TT
CLASS="TYPE"
>internal</TT
>, <TT
CLASS="TYPE"
>oid</TT
>, <TT
CLASS="TYPE"
>integer</TT
>.
   The first argument is a pointer to a <TT
CLASS="TYPE"
>StringInfo</TT
> 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
   <TT
CLASS="REPLACEABLE"
><I
>send_function</I
></TT
> 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 <TT
CLASS="TYPE"
>bytea</TT
>.
   Send functions are not invoked for NULL values.
  </P
><P
>   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 <I
CLASS="FIRSTTERM"
>shell type</I
>, which is a
   placeholder type that has no properties except a name and an owner.  This
   is done by issuing the command <TT
CLASS="LITERAL"
>CREATE TYPE
   <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></TT
>, with no additional parameters.  Then the
   I/O functions can be defined referencing the shell type.  Finally,
   <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> with a full definition replaces the shell entry
   with a complete, valid type definition, after which the new type can be
   used normally.
  </P
><P
>   The optional
   <TT
CLASS="REPLACEABLE"
><I
>type_modifier_input_function</I
></TT
>
   and <TT
CLASS="REPLACEABLE"
><I
>type_modifier_output_function</I
></TT
>
   are needed if the type supports modifiers, that is optional constraints
   attached to a type declaration, such as <TT
CLASS="LITERAL"
>char(5)</TT
> or
   <TT
CLASS="LITERAL"
>numeric(30,2)</TT
>.  <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> 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
   <TT
CLASS="REPLACEABLE"
><I
>type_modifier_input_function</I
></TT
>
   is passed the declared modifier(s) in the form of a <TT
CLASS="TYPE"
>cstring</TT
>
   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
   <TT
CLASS="TYPE"
>integer</TT
> value that will be stored as the column <SPAN
CLASS="QUOTE"
>"typmod"</SPAN
>.
   Type modifiers will be rejected if the type does not have a
   <TT
CLASS="REPLACEABLE"
><I
>type_modifier_input_function</I
></TT
>.
   The <TT
CLASS="REPLACEABLE"
><I
>type_modifier_output_function</I
></TT
>
   converts the internal integer typmod value back to the correct form for
   user display.  It must return a <TT
CLASS="TYPE"
>cstring</TT
> value that is the exact
   string to append to the type name; for example <TT
CLASS="TYPE"
>numeric</TT
>'s
   function might return <TT
CLASS="LITERAL"
>(30,2)</TT
>.
   It is allowed to omit the
   <TT
CLASS="REPLACEABLE"
><I
>type_modifier_output_function</I
></TT
>,
   in which case the default display format is just the stored typmod integer
   value enclosed in parentheses.
  </P
><P
>   The optional <TT
CLASS="REPLACEABLE"
><I
>analyze_function</I
></TT
>
   performs type-specific statistics collection for columns of the data type.
   By default, <TT
CLASS="COMMAND"
>ANALYZE</TT
> will attempt to gather statistics using
   the type's <SPAN
CLASS="QUOTE"
>"equals"</SPAN
> and <SPAN
CLASS="QUOTE"
>"less-than"</SPAN
> 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 <TT
CLASS="TYPE"
>internal</TT
>, and return
   a <TT
CLASS="TYPE"
>boolean</TT
> result.  The detailed API for analysis functions appears
   in <TT
CLASS="FILENAME"
>src/include/commands/vacuum.h</TT
>.
  </P
><P
>   While the details of the new type's 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 <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>.
   Foremost of these is
   <TT
CLASS="REPLACEABLE"
><I
>internallength</I
></TT
>.
   Base data types can be fixed-length, in which case
   <TT
CLASS="REPLACEABLE"
><I
>internallength</I
></TT
> is a
   positive integer, or variable  length, indicated by setting
   <TT
CLASS="REPLACEABLE"
><I
>internallength</I
></TT
>
   to <TT
CLASS="LITERAL"
>VARIABLE</TT
>.  (Internally, this is represented
   by setting <TT
CLASS="LITERAL"
>typlen</TT
> 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.
  </P
><P
>   The optional flag <TT
CLASS="LITERAL"
>PASSEDBYVALUE</TT
> indicates that
   values of this data type are passed by value, rather than by
   reference.  You cannot pass by value types whose internal
   representation is larger than the size of the <TT
CLASS="TYPE"
>Datum</TT
> type
   (4 bytes on most machines, 8 bytes on a few).
  </P
><P
>   The <TT
CLASS="REPLACEABLE"
><I
>alignment</I
></TT
> 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 <TT
CLASS="TYPE"
>int4</TT
> as their first component.
  </P
><P
>   The <TT
CLASS="REPLACEABLE"
><I
>storage</I
></TT
> parameter
   allows selection of storage strategies for variable-length data
   types.  (Only <TT
CLASS="LITERAL"
>plain</TT
> is allowed for fixed-length
   types.)  <TT
CLASS="LITERAL"
>plain</TT
> specifies that data of the type
   will always be stored in-line and not compressed.
   <TT
CLASS="LITERAL"
>extended</TT
> 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's still too long.
   <TT
CLASS="LITERAL"
>external</TT
> allows the value to be moved out of the
   main table, but the system will not try to compress it.
   <TT
CLASS="LITERAL"
>main</TT
> 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 <TT
CLASS="LITERAL"
>extended</TT
> and
   <TT
CLASS="LITERAL"
>external</TT
> items.)
  </P
><P
>   The <TT
CLASS="REPLACEABLE"
><I
>like_type</I
></TT
> parameter
   provides an alternative method for specifying the basic representation
   properties of a data type: copy them from some existing type. The values of
   <TT
CLASS="REPLACEABLE"
><I
>internallength</I
></TT
>,
   <TT
CLASS="REPLACEABLE"
><I
>passedbyvalue</I
></TT
>,
   <TT
CLASS="REPLACEABLE"
><I
>alignment</I
></TT
>, and
   <TT
CLASS="REPLACEABLE"
><I
>storage</I
></TT
> are copied from the
   named type.  (It is possible, though usually undesirable, to override
   some of these values by specifying them along with the <TT
CLASS="LITERAL"
>LIKE</TT
>
   clause.)  Specifying representation this way is especially useful when
   the low-level implementation of the new type <SPAN
CLASS="QUOTE"
>"piggybacks"</SPAN
> on an
   existing type in some fashion.
  </P
><P
>   The <TT
CLASS="REPLACEABLE"
><I
>category</I
></TT
> and
   <TT
CLASS="REPLACEABLE"
><I
>preferred</I
></TT
> 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 <SPAN
CLASS="QUOTE"
>"preferred"</SPAN
> 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 <A
HREF="typeconv.html"
>Chapter 10</A
>.  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 <SPAN
CLASS="QUOTE"
>"most general"</SPAN
> types as being preferred within the category.
   The <TT
CLASS="REPLACEABLE"
><I
>category</I
></TT
> 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.
  </P
><P
>   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 <TT
CLASS="LITERAL"
>DEFAULT</TT
> key word.
   (Such a default can be overridden by an explicit <TT
CLASS="LITERAL"
>DEFAULT</TT
>
   clause attached to a particular column.)
  </P
><P
>   To indicate that a type is an array, specify the type of the array
   elements using the <TT
CLASS="LITERAL"
>ELEMENT</TT
> key word.  For example, to
   define an array of 4-byte integers (<TT
CLASS="TYPE"
>int4</TT
>), specify
   <TT
CLASS="LITERAL"
>ELEMENT = int4</TT
>. More details about array types
   appear below.
  </P
><P
>   To indicate the delimiter to be used between values in the external
   representation of arrays of this type, <TT
CLASS="REPLACEABLE"
><I
>delimiter</I
></TT
> can be
   set to a specific character.  The default delimiter is the comma
   (<TT
CLASS="LITERAL"
>,</TT
>).  Note that the delimiter is associated
   with the array element type, not the array type itself.
  </P
><P
>   If the optional Boolean
   parameter <TT
CLASS="REPLACEABLE"
><I
>collatable</I
></TT
>
   is true, column definitions and expressions of the type may carry
   collation information through use of
   the <TT
CLASS="LITERAL"
>COLLATE</TT
> 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.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN69140"
></A
><H3
>Array Types</H3
><P
>    Whenever a user-defined type is created,
    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> automatically creates an
    associated array type, whose name consists of the base type's
    name prepended with an underscore, and truncated if necessary to keep
    it less than <TT
CLASS="SYMBOL"
>NAMEDATALEN</TT
> 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 <TT
CLASS="LITERAL"
>array_in</TT
> and
    <TT
CLASS="LITERAL"
>array_out</TT
>.  The array type tracks any changes in its
    element type's owner or schema, and is dropped if the element type is.
   </P
><P
>    You might reasonably ask why there is an <TT
CLASS="OPTION"
>ELEMENT</TT
>
    option, if the system makes the correct array type automatically.
    The only case where it's useful to use <TT
CLASS="OPTION"
>ELEMENT</TT
> 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 <TT
CLASS="TYPE"
>point</TT
>
    is represented as just two floating-point numbers, which it allows to be
    accessed as <TT
CLASS="LITERAL"
>point[0]</TT
> and <TT
CLASS="LITERAL"
>point[1]</TT
>.
    Note that
    this facility only works for fixed-length types whose internal form
    is exactly a sequence of identical fixed-length fields.  A subscriptable
    variable-length type must have the generalized internal representation
    used by <TT
CLASS="LITERAL"
>array_in</TT
> and <TT
CLASS="LITERAL"
>array_out</TT
>.
    For historical reasons (i.e., this is clearly wrong but it's far too
    late to change it), subscripting of fixed-length array types starts from
    zero, rather than from one as for variable-length arrays.
   </P
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN69155"
></A
><H2
>Parameters</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></DT
><DD
><P
>      The name (optionally schema-qualified) of a type to be created.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>attribute_name</I
></TT
></DT
><DD
><P
>      The name of an attribute (column) for the composite type.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>data_type</I
></TT
></DT
><DD
><P
>      The name of an existing data type to become a column of the
      composite type.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>label</I
></TT
></DT
><DD
><P
>      A string literal representing the textual label associated with
      one value of an enum type.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>input_function</I
></TT
></DT
><DD
><P
>      The name of a function that converts data from the type's
      external textual form to its internal form.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>output_function</I
></TT
></DT
><DD
><P
>      The name of a function that converts data from the type's
      internal form to its external textual form.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>receive_function</I
></TT
></DT
><DD
><P
>      The name of a function that converts data from the type's
      external binary form to its internal form.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>send_function</I
></TT
></DT
><DD
><P
>      The name of a function that converts data from the type's
      internal form to its external binary form.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>type_modifier_input_function</I
></TT
></DT
><DD
><P
>      The name of a function that converts an array of modifier(s) for the type
      into internal form.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>type_modifier_output_function</I
></TT
></DT
><DD
><P
>      The name of a function that converts the internal form of the type's
      modifier(s) to external textual form.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>analyze_function</I
></TT
></DT
><DD
><P
>      The name of a function that performs statistical analysis for the
      data type.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>internallength</I
></TT
></DT
><DD
><P
>      A numeric constant that specifies the length in bytes of the new
      type's internal representation.  The default assumption is that
      it is variable-length.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>alignment</I
></TT
></DT
><DD
><P
>      The storage alignment requirement of the data type.  If specified,
      it must be <TT
CLASS="LITERAL"
>char</TT
>, <TT
CLASS="LITERAL"
>int2</TT
>,
      <TT
CLASS="LITERAL"
>int4</TT
>, or <TT
CLASS="LITERAL"
>double</TT
>; the
      default is <TT
CLASS="LITERAL"
>int4</TT
>.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>storage</I
></TT
></DT
><DD
><P
>      The storage strategy for the data type.  If specified, must be
      <TT
CLASS="LITERAL"
>plain</TT
>, <TT
CLASS="LITERAL"
>external</TT
>,
      <TT
CLASS="LITERAL"
>extended</TT
>, or <TT
CLASS="LITERAL"
>main</TT
>; the
      default is <TT
CLASS="LITERAL"
>plain</TT
>.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>like_type</I
></TT
></DT
><DD
><P
>      The name of an existing data type that the new type will have the
      same representation as.  The values of
      <TT
CLASS="REPLACEABLE"
><I
>internallength</I
></TT
>,
      <TT
CLASS="REPLACEABLE"
><I
>passedbyvalue</I
></TT
>,
      <TT
CLASS="REPLACEABLE"
><I
>alignment</I
></TT
>, and
      <TT
CLASS="REPLACEABLE"
><I
>storage</I
></TT
>
      are copied from that type, unless overridden by explicit
      specification elsewhere in this <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> command.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>category</I
></TT
></DT
><DD
><P
>      The category code (a single ASCII character) for this type.
      The default is <TT
CLASS="LITERAL"
>'U'</TT
> for <SPAN
CLASS="QUOTE"
>"user-defined type"</SPAN
>.
      Other standard category codes can be found in
      <A
HREF="catalog-pg-type.html#CATALOG-TYPCATEGORY-TABLE"
>Table 45-49</A
>.  You may also choose
      other ASCII characters in order to create custom categories.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>preferred</I
></TT
></DT
><DD
><P
>      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.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>default</I
></TT
></DT
><DD
><P
>      The default value for the data type.  If this is omitted, the
      default is null.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>element</I
></TT
></DT
><DD
><P
>      The type being created is an array; this specifies the type of
      the array elements.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>delimiter</I
></TT
></DT
><DD
><P
>      The delimiter character to be used between values in arrays made
      of this type.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>collatable</I
></TT
></DT
><DD
><P
>      True if this type's operations can use collation information.
      The default is false.
     </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATETYPE-NOTES"
></A
><H2
>Notes</H2
><P
>   Because there are no restrictions on use of a data type once it's been
   created, creating a base 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 <SPAN
CLASS="QUOTE"
>"secret"</SPAN
> information to be used
   while converting it to or from external form.
  </P
><P
>   Before <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> version 8.3, the name of
   a generated array type was always exactly the element type's name with one
   underscore character (<TT
CLASS="LITERAL"
>_</TT
>) prepended.  (Type names were
   therefore restricted in length to one less 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
   <TT
CLASS="STRUCTNAME"
>pg_type</TT
>.<TT
CLASS="STRUCTFIELD"
>typarray</TT
> to locate the array type
   associated with a given type.
  </P
><P
>   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.
  </P
><P
>   Before <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> version 8.2, the syntax
   <TT
CLASS="LITERAL"
>CREATE TYPE <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></TT
> did not exist.
   The way to create a new base type was to create its input function first.
   In this approach, <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> 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.
  </P
><P
>   In <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> versions before 7.3, it
   was customary to avoid creating a shell type at all, by replacing the
   functions' forward references to the type name with the placeholder
   pseudotype <TT
CLASS="TYPE"
>opaque</TT
>.  The <TT
CLASS="TYPE"
>cstring</TT
> arguments and
   results also had to be declared as <TT
CLASS="TYPE"
>opaque</TT
> before 7.3.  To
   support loading of old dump files, <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> will
   accept I/O functions declared using <TT
CLASS="TYPE"
>opaque</TT
>, but it will issue
   a notice and change the function declarations to use the correct
   types.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN69303"
></A
><H2
>Examples</H2
><P
>   This example creates a composite type and uses it in
   a function definition:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE TYPE compfoo AS (f1 int, f2 text);

CREATE FUNCTION getfoo() RETURNS SETOF compfoo AS $$
    SELECT fooid, fooname FROM foo
$$ LANGUAGE SQL;</PRE
><P>
  </P
><P
>   This example creates an enumerated type and uses it in
   a table definition:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE TYPE bug_status AS ENUM ('new', 'open', 'closed');

CREATE TABLE bug (
    id serial,
    description text,
    status bug_status
);</PRE
><P>
  </P
><P
>   This example creates the base data type <TT
CLASS="TYPE"
>box</TT
> and then uses the
   type in a table definition:
</P><PRE
CLASS="PROGRAMLISTING"
>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
);</PRE
><P>
  </P
><P
>   If the internal structure of <TT
CLASS="TYPE"
>box</TT
> were an array of four
   <TT
CLASS="TYPE"
>float4</TT
> elements, we might instead use:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE TYPE box (
    INTERNALLENGTH = 16,
    INPUT = my_box_in_function,
    OUTPUT = my_box_out_function,
    ELEMENT = float4
);</PRE
><P>
   which would allow a box value's component numbers to be accessed
   by subscripting.  Otherwise the type behaves the same as before.
  </P
><P
>   This example creates a large object type and uses it in
   a table definition:
</P><PRE
CLASS="PROGRAMLISTING"
>CREATE TYPE bigobj (
    INPUT = lo_filein, OUTPUT = lo_fileout,
    INTERNALLENGTH = VARIABLE
);
CREATE TABLE big_objs (
    id integer,
    obj bigobj
);</PRE
><P>
  </P
><P
>   More examples, including suitable input and output functions, are
   in <A
HREF="xtypes.html"
>Section 35.11</A
>.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATETYPE-COMPATIBILITY"
></A
><H2
>Compatibility</H2
><P
>   The first form of the <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> command, which
   creates a composite type, conforms to the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> standard.
   The other forms are <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>
   extensions.  The <TT
CLASS="COMMAND"
>CREATE TYPE</TT
> statement in
   the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> standard also defines other forms that are not
   implemented in <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>.
  </P
><P
>   The ability to create a composite type with zero attributes is
   a <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>-specific deviation from the
   standard (analogous to <TT
CLASS="COMMAND"
>CREATE TABLE</TT
>).
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="SQL-CREATETYPE-SEE-ALSO"
></A
><H2
>See Also</H2
><A
HREF="sql-altertype.html"
>ALTER TYPE</A
>, <A
HREF="sql-createdomain.html"
>CREATE DOMAIN</A
>, <A
HREF="sql-createfunction.html"
>CREATE FUNCTION</A
>, <A
HREF="sql-droptype.html"
>DROP TYPE</A
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-createtrigger.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-createuser.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>CREATE TRIGGER</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>CREATE USER</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>