diff options
Diffstat (limited to 'src/interfaces/ecpg/test/sql/dyntest.pgc')
-rw-r--r-- | src/interfaces/ecpg/test/sql/dyntest.pgc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/test/sql/dyntest.pgc b/src/interfaces/ecpg/test/sql/dyntest.pgc index 65184ce65aa..c98b3d20679 100644 --- a/src/interfaces/ecpg/test/sql/dyntest.pgc +++ b/src/interfaces/ecpg/test/sql/dyntest.pgc @@ -62,7 +62,7 @@ int main(int argc,char **argv) :TYPE = type, :LENGTH = length, :OCTET_LENGTH=octet_length, :PRECISION = precision, :SCALE=scale, - /* :NULLABLE=nullable, */ :NAME=name, + :NAME=name, :RETURNED_OCTET_LENGTH=returned_octet_length; printf("%s ",NAME); switch (TYPE) @@ -122,8 +122,6 @@ int main(int argc,char **argv) else printf("<SQL3 %d> ",TYPE); break; } - /* nullable is not yet implemented in ecpg */ - /* if (!NULLABLE) printf("not null "); */ if (OCTET_LENGTH>0) printf("[%d bytes]",OCTET_LENGTH); putchar('\n'); } |