Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
7bdc55cc
Commit
7bdc55cc
authored
Dec 16, 2006
by
Andrew Dunstan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable \timing oputput for \copy commands
parent
281f4018
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
28 deletions
+47
-28
src/bin/psql/command.c
src/bin/psql/command.c
+18
-2
src/bin/psql/common.c
src/bin/psql/common.c
+1
-25
src/bin/psql/common.h
src/bin/psql/common.h
+28
-1
No files found.
src/bin/psql/command.c
View file @
7bdc55cc
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.17
4 2006/10/06 17:14:00 petere
Exp $
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.17
5 2006/12/16 00:38:43 adunstan
Exp $
*/
#include "postgres_fe.h"
#include "command.h"
...
...
@@ -303,10 +303,26 @@ exec_command(const char *cmd,
/* \copy */
else
if
(
pg_strcasecmp
(
cmd
,
"copy"
)
==
0
)
{
/* Default fetch-it-all-and-print mode */
TimevalStruct
before
,
after
;
double
elapsed_msec
=
0
;
char
*
opt
=
psql_scan_slash_option
(
scan_state
,
OT_WHOLE_LINE
,
NULL
,
false
);
if
(
pset
.
timing
)
GETTIMEOFDAY
(
&
before
);
success
=
do_copy
(
opt
);
if
(
pset
.
timing
&&
success
)
{
GETTIMEOFDAY
(
&
after
);
elapsed_msec
=
DIFF_MSEC
(
&
after
,
&
before
);
printf
(
_
(
"Time: %.3f ms
\n
"
),
elapsed_msec
);
}
free
(
opt
);
}
...
...
src/bin/psql/common.c
View file @
7bdc55cc
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.13
0 2006/10/04 00:30:05 momji
an Exp $
* $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.13
1 2006/12/16 00:38:43 adunst
an Exp $
*/
#include "postgres_fe.h"
#include "common.h"
...
...
@@ -11,12 +11,10 @@
#include <ctype.h>
#include <signal.h>
#ifndef WIN32
#include <sys/time.h>
#include <unistd.h>
/* for write() */
#else
#include <io.h>
/* for _write() */
#include <win32.h>
#include <sys/timeb.h>
/* for _ftime() */
#endif
#include "pqsignal.h"
...
...
@@ -28,28 +26,6 @@
#include "mbprint.h"
/* Workarounds for Windows */
/* Probably to be moved up the source tree in the future, perhaps to be replaced by
* more specific checks like configure-style HAVE_GETTIMEOFDAY macros.
*/
#ifndef WIN32
typedef
struct
timeval
TimevalStruct
;
#define GETTIMEOFDAY(T) gettimeofday(T, NULL)
#define DIFF_MSEC(T, U) \
((((int) ((T)->tv_sec - (U)->tv_sec)) * 1000000.0 + \
((int) ((T)->tv_usec - (U)->tv_usec))) / 1000.0)
#else
typedef
struct
_timeb
TimevalStruct
;
#define GETTIMEOFDAY(T) _ftime(T)
#define DIFF_MSEC(T, U) \
(((T)->time - (U)->time) * 1000.0 + \
((T)->millitm - (U)->millitm))
#endif
static
bool
ExecQueryUsingCursor
(
const
char
*
query
,
double
*
elapsed_msec
);
static
bool
command_no_begin
(
const
char
*
query
);
...
...
src/bin/psql/common.h
View file @
7bdc55cc
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.5
1 2006/10/04 00:30:05 momji
an Exp $
* $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.5
2 2006/12/16 00:38:43 adunst
an Exp $
*/
#ifndef COMMON_H
#define COMMON_H
...
...
@@ -63,4 +63,31 @@ extern const char *session_username(void);
extern
char
*
expand_tilde
(
char
**
filename
);
/* Workarounds for Windows */
/* Probably to be moved up the source tree in the future, perhaps to be replaced by
* more specific checks like configure-style HAVE_GETTIMEOFDAY macros.
*/
#ifndef WIN32
#include <sys/time.h>
typedef
struct
timeval
TimevalStruct
;
#define GETTIMEOFDAY(T) gettimeofday(T, NULL)
#define DIFF_MSEC(T, U) \
((((int) ((T)->tv_sec - (U)->tv_sec)) * 1000000.0 + \
((int) ((T)->tv_usec - (U)->tv_usec))) / 1000.0)
#else
typedef
struct
_timeb
TimevalStruct
;
#include <sys/types.h>
#include <sys/timeb.h>
#define GETTIMEOFDAY(T) _ftime(T)
#define DIFF_MSEC(T, U) \
(((T)->time - (U)->time) * 1000.0 + \
((T)->millitm - (U)->millitm))
#endif
#endif
/* COMMON_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment