mirror of
https://github.com/postgres/postgres.git
synced 2025-07-24 14:22:24 +03:00
Sorry my previous change was a mistake.
This commit is contained in:
@ -893,12 +893,12 @@ copy_statement_with_parameters(StatementClass *stmt)
|
||||
break;
|
||||
|
||||
case SQL_C_DOUBLE:
|
||||
sprintf(param_string, "%15g",
|
||||
sprintf(param_string, "%.15g",
|
||||
*((SDOUBLE *) buffer));
|
||||
break;
|
||||
|
||||
case SQL_C_FLOAT:
|
||||
sprintf(param_string, "%6g",
|
||||
sprintf(param_string, "%.6g",
|
||||
*((SFLOAT *) buffer));
|
||||
break;
|
||||
|
||||
|
Reference in New Issue
Block a user