Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
2d6fee09
Commit
2d6fee09
authored
13 years ago
by
Robert Haas
Browse files
Options
Downloads
Patches
Plain Diff
Add new pgbench switch, --unlogged-tables.
This entails adjusting pgbench to use getopt_long() rather than getopt().
parent
bcf23ba4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/pgbench/pgbench.c
+37
-14
37 additions, 14 deletions
contrib/pgbench/pgbench.c
doc/src/sgml/pgbench.sgml
+9
-0
9 additions, 0 deletions
doc/src/sgml/pgbench.sgml
with
46 additions
and
14 deletions
contrib/pgbench/pgbench.c
+
37
−
14
View file @
2d6fee09
...
...
@@ -33,6 +33,7 @@
#include
"postgres_fe.h"
#include
"getopt_long.h"
#include
"libpq-fe.h"
#include
"libpq/pqsignal.h"
#include
"portability/instr_time.h"
...
...
@@ -44,10 +45,6 @@
#include
<unistd.h>
#endif
/* ! WIN32 */
#ifdef HAVE_GETOPT_H
#include
<getopt.h>
#endif
#ifdef HAVE_SYS_SELECT_H
#include
<sys/select.h>
#endif
...
...
@@ -122,6 +119,11 @@ int scale = 1;
*/
int
fillfactor
=
100
;
/*
* use unlogged tables?
*/
int
unlogged_tables
=
0
;
/*
* end of configurable parameters
*********************************************************************/
...
...
@@ -357,6 +359,8 @@ usage(const char *progname)
" -h HOSTNAME database server host or socket directory
\n
"
" -p PORT database server port number
\n
"
" -U USERNAME connect as specified database user
\n
"
" --unlogged-tables
\n
"
" create tables as unlogged tables
\n
"
" --help show this help, then exit
\n
"
" --version output version information, then exit
\n
"
"
\n
"
...
...
@@ -1259,21 +1263,31 @@ init(void)
for
(
i
=
0
;
i
<
lengthof
(
DDLs
);
i
++
)
{
char
buffer1
[
128
];
char
buffer2
[
128
];
char
*
qry
=
DDLs
[
i
];
/*
* set fillfactor for branches, tellers and accounts tables
*/
if
((
strstr
(
DDLs
[
i
]
,
"create table pgbench_branches"
)
==
DDLs
[
i
])
||
(
strstr
(
DDLs
[
i
]
,
"create table pgbench_tellers"
)
==
DDLs
[
i
])
||
(
strstr
(
DDLs
[
i
]
,
"create table pgbench_accounts"
)
==
DDLs
[
i
]))
if
((
strstr
(
qry
,
"create table pgbench_branches"
)
==
DDLs
[
i
])
||
(
strstr
(
qry
,
"create table pgbench_tellers"
)
==
DDLs
[
i
])
||
(
strstr
(
qry
,
"create table pgbench_accounts"
)
==
DDLs
[
i
]))
{
char
ddl_stmt
[
128
];
snprintf
(
buffer1
,
128
,
qry
,
fillfactor
);
qry
=
buffer1
;
}
snprintf
(
ddl_stmt
,
128
,
DDLs
[
i
],
fillfactor
);
executeStatement
(
con
,
ddl_stmt
);
continue
;
/*
* set unlogged tables, if requested
*/
if
(
unlogged_tables
&&
strncmp
(
qry
,
"create table"
,
12
)
==
0
)
{
snprintf
(
buffer2
,
128
,
"create unlogged%s"
,
qry
+
6
);
qry
=
buffer2
;
}
else
executeStatement
(
con
,
DDLs
[
i
]
);
executeStatement
(
con
,
qry
);
}
executeStatement
(
con
,
"begin"
);
...
...
@@ -1767,6 +1781,7 @@ main(int argc, char **argv)
int
do_vacuum_accounts
=
0
;
/* do vacuum accounts before testing? */
int
ttype
=
0
;
/* transaction type. 0: TPC-B, 1: SELECT only,
* 2: skip update of branches and tellers */
int
optindex
;
char
*
filename
=
NULL
;
bool
scale_given
=
false
;
...
...
@@ -1780,6 +1795,11 @@ main(int argc, char **argv)
int
i
;
static
struct
option
long_options
[]
=
{
{
"unlogged-tables"
,
no_argument
,
&
unlogged_tables
,
1
},
{
NULL
,
0
,
NULL
,
0
}
};
#ifdef HAVE_GETRLIMIT
struct
rlimit
rlim
;
#endif
...
...
@@ -1823,7 +1843,7 @@ main(int argc, char **argv)
state
=
(
CState
*
)
xmalloc
(
sizeof
(
CState
));
memset
(
state
,
0
,
sizeof
(
CState
));
while
((
c
=
getopt
(
argc
,
argv
,
"ih:nvp:dSNc:j:Crs:t:T:U:lf:D:F:M:"
))
!=
-
1
)
while
((
c
=
getopt
_long
(
argc
,
argv
,
"ih:nvp:dSNc:j:Crs:t:T:U:lf:D:F:M:"
,
long_options
,
&
optindex
))
!=
-
1
)
{
switch
(
c
)
{
...
...
@@ -1975,6 +1995,9 @@ main(int argc, char **argv)
exit
(
1
);
}
break
;
case
0
:
/* This covers the long options. */
break
;
default:
fprintf
(
stderr
,
_
(
"Try
\"
%s --help
\"
for more information.
\n
"
),
progname
);
exit
(
1
);
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/pgbench.sgml
+
9
−
0
View file @
2d6fee09
...
...
@@ -159,6 +159,15 @@ pgbench <optional> <replaceable>options</> </optional> <replaceable>dbname</>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--unlogged-tables</option></term>
<listitem>
<para>
Create all tables as unlogged tables, rather than permanent tables.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment