]> granicus.if.org Git - postgresql/commitdiff
Made variable type double work again.
authorMichael Meskes <meskes@postgresql.org>
Fri, 16 May 2003 11:30:09 +0000 (11:30 +0000)
committerMichael Meskes <meskes@postgresql.org>
Fri, 16 May 2003 11:30:09 +0000 (11:30 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/preproc/c_keywords.c
src/interfaces/ecpg/preproc/preproc.y

index d07c9367604cc1cf2310bb86359cf78d62060583..0762cba44b3f304205c795335a8bfc535bb3828c 100644 (file)
@@ -1418,6 +1418,10 @@ Wed May 14 13:05:49 CEST 2003
 Fri May 16 11:45:50 CEST 2003
 
        - Fixed include in pgtypeslib to not include c.h
+
+Fri May 16 13:32:10 CEST 2003
+
+       - Made double variables work again.
        - Set ecpg version to 2.12.0.
        - Set ecpg library to 3.4.2.
        - Set pgtypes library to 1.0.0
index 04c55f5b3f2bbc99157993acd8991a27af909eb8..39e089af8bb50dda178e4698c6c57bb730f87273 100644 (file)
@@ -25,7 +25,6 @@ static ScanKeyword ScanKeywords[] = {
        {"bool", SQL_BOOL},
        {"char", CHAR_P},
        {"const", S_CONST},
-       {"double", DOUBLE_P},
        {"enum", SQL_ENUM},
        {"extern", S_EXTERN},
        {"float", FLOAT_P},
index 276f8ccd9a0f0d46552b627c4eba8d812b3afb7c..95745145d3de8d3acaf63023969dfda11d1fc2d4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.218 2003/05/16 04:59:22 momjian Exp $ */
+/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/Attic/preproc.y,v 1.219 2003/05/16 11:30:09 meskes Exp $ */
 
 /* Copyright comment */
 %{
@@ -4183,6 +4183,14 @@ ecpg_interval:   opt_interval    { $$ = $1; }
                ;
 
 single_vt_type: common_type
+               | DOUBLE_P
+               {
+                       $$.type_enum = ECPGt_double;
+                       $$.type_str = make_str("double");
+                       $$.type_dimension = make_str("-1");
+                       $$.type_index = make_str("-1");
+                       $$.type_sizeof = NULL;
+               }
                | ECPGColLabelCommon ecpg_interval
                {
                        if (strlen($2) != 0 && strcmp ($1, "datetime") != 0 && strcmp ($1, "interval") != 0)
@@ -4208,14 +4216,6 @@ single_vt_type: common_type
                                $$.type_index = make_str("-1");
                                $$.type_sizeof = NULL;
                        }
-                       else if (strcmp($1, "double") == 0)
-                       {
-                               $$.type_enum = ECPGt_double;
-                               $$.type_str = make_str("double");
-                               $$.type_dimension = make_str("-1");
-                               $$.type_index = make_str("-1");
-                               $$.type_sizeof = NULL;
-                       }
                        else if (strcmp($1, "numeric") == 0)
                        {
                                $$.type_enum = ECPGt_numeric;
@@ -4671,7 +4671,7 @@ variable: opt_pointer ECPGColLabelCommon opt_array_bounds opt_initializer
                        struct ECPGtype * type;
                        char *dimension = $3.index1; /* dimension of array */
                        char *length = $3.index2;    /* lenght of string */
-                       char dim[14L], ascii_len[12];
+                       char dim[14L];
 
                        adjust_array(actual_type[struct_level].type_enum, &dimension, &length, actual_type[struct_level].type_dimension, actual_type[struct_level].type_index, strlen($1));
 
@@ -5289,11 +5289,11 @@ symbol: ColLabel                                { $$ = $1; }
 
 /* Column identifier --- names that can be column, table, etc names.
  */
-ColId: ident                                                   { $$ = $1; }
+ColId: ident                                           { $$ = $1; }
                | unreserved_keyword                    { $$ = $1; }
-               | col_name_keyword                              { $$ = $1; }
-               | ECPGKeywords                                  { $$ = $1; }
-               | CHAR_P                                                { $$ = make_str("char"); }
+               | col_name_keyword                      { $$ = $1; }
+               | ECPGKeywords                          { $$ = $1; }
+               | CHAR_P                                { $$ = make_str("char"); }
                ;
 
 /* Type identifier --- names that can be type names.