diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-08 17:37:52 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-08 17:37:52 +0000 |
commit | d2c744aa56aca7fe756a156a8e2109aaa676e54f (patch) | |
tree | c60eaa7b71536a84e20e883da6b28d7ad60fc229 /src/bin/psql/tab-complete.c | |
parent | fef731d1c40e0cfd98d8a3cb724f696c9abe6f7d (diff) |
Add extra_float_digits GUC parameter to allow adjustment of displayed
precision for float4, float8, and geometric types. Set it in pg_dump
so that float data can be dumped/reloaded exactly (at least on platforms
where the float I/O support is properly implemented). Initial patch by
Pedro Ferreira, some additional work by Tom Lane.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index ce4a2b5a809..4b3e4c13a9b 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright 2000-2002 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.64 2002/09/04 20:31:36 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.65 2002/11/08 17:37:52 tgl Exp $ */ /*---------------------------------------------------------------------- @@ -261,6 +261,7 @@ psql_completion(char *text, int start, int end) "max_expr_depth", "commit_delay", "commit_siblings", + "extra_float_digits", "effective_cache_size", "random_page_cost", |