1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-22 12:22:45 +03:00

From: Michael Meskes <meskes@topsystem.de>

+Wed May 20 10:46:48 CEST 1998
+
+       - Fixed handling of preprocessor directives and variable
+         initialization.
+       - Added enum datatype.
        - Set version to 2.3.2
This commit is contained in:
Marc G. Fournier
1998-05-26 13:43:55 +00:00
parent b15b768bfa
commit c31a80faf0
9 changed files with 95 additions and 44 deletions

View File

@@ -8,7 +8,8 @@ ECPGtype_name(enum ECPGttype typ)
{
switch (typ)
{
case ECPGt_char:return "char";
case ECPGt_char:
return "char";
case ECPGt_unsigned_char:
return "unsigned char";
case ECPGt_short:
@@ -29,6 +30,8 @@ ECPGtype_name(enum ECPGttype typ)
return "double";
case ECPGt_bool:
return "bool";
case ECPGt_varchar:
return "varchar";
default:
abort();
}