1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-27 00:12:01 +03:00

Add separate type category for bit string types, allowing mixed bit/varbit

function calls to work.
This commit is contained in:
Peter Eisentraut
2000-11-17 19:57:48 +00:00
parent 8a35ac24f8
commit 52aa720320
2 changed files with 8 additions and 3 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: parse_coerce.h,v 1.24 2000/10/05 19:11:38 tgl Exp $
* $Id: parse_coerce.h,v 1.25 2000/11/17 19:57:48 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -23,6 +23,7 @@ typedef enum CATEGORY
UNKNOWN_TYPE,
BOOLEAN_TYPE,
STRING_TYPE,
BITSTRING_TYPE,
NUMERIC_TYPE,
DATETIME_TYPE,
TIMESPAN_TYPE,