We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0514ad1 commit 0f3720eCopy full SHA for 0f3720e
src/backend/parser/analyze.c
@@ -6,7 +6,7 @@
6
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7
* Portions Copyright (c) 1994, Regents of the University of California
8
*
9
- * $Id: analyze.c,v 1.166 2000/11/16 22:30:28 tgl Exp $
+ * $Id: analyze.c,v 1.167 2000/11/18 16:17:20 petere Exp $
10
11
*-------------------------------------------------------------------------
12
*/
@@ -2891,6 +2891,10 @@ transformColumnType(ParseState *pstate, ColumnDef *column)
2891
typename->typmod = VARHDRSZ +
2892
((NUMERIC_DEFAULT_PRECISION << 16) | NUMERIC_DEFAULT_SCALE);
2893
break;
2894
+ case ZPBITOID:
2895
+ /* 'bit' -> 'bit(1)' */
2896
+ typename->typmod = 1;
2897
+ break;
2898
}
2899
2900
0 commit comments