Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
83c9bb3b
Commit
83c9bb3b
authored
Jun 04, 2001
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed portability problem.
sql-bench/Comments/postgres.benchmark: Added warning about PostgreSQL 7.1.1
parent
5ec76be4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
10 deletions
+17
-10
sql-bench/Comments/postgres.benchmark
sql-bench/Comments/postgres.benchmark
+15
-5
sql/ha_gemini.cc
sql/ha_gemini.cc
+1
-4
sql/mysqld.cc
sql/mysqld.cc
+1
-1
No files found.
sql-bench/Comments/postgres.benchmark
View file @
83c9bb3b
# This file describes how to run MySQL benchmarks with Postgres
#
# This file describes how to run MySQL benchmarks with PostgreSQL
#
# WARNING:
#
# Don't run the --fast test on a PostgreSQL 7.1.1 database on
# which you have any critical data; During one of our test runs
# PostgreSQL got a corrupted database and all data was destroyed!
# (When we tried to restart postmaster, It died with a
# 'no such file or directory' error and never recovered from that!
#
# WARNING
# The test was run on a Intel Xeon 2x 550 Mzh machine with 1G memory,
# 9G hard disk. The OS is Suse 6.4, with Linux 2.2.14 compiled with SMP
...
...
@@ -8,8 +17,6 @@
# on the same machine. No other cpu intensive process was used during
# the benchmark.
#
#
# First, install postgresql-7.1.1.tar.gz
# Adding the following lines to your ~/.bash_profile or
...
...
@@ -27,7 +34,10 @@ MANPATH=$MANPATH:/usr/local/pg/man
#
/usr/local/pg/lib
and run ldconfig.
# and run:
ldconfig
# untar the postgres source distribution, cd to postgresql-*
# and run the following commands:
...
...
sql/ha_gemini.cc
View file @
83c9bb3b
...
...
@@ -19,11 +19,7 @@
#pragma implementation // gcc: Class implementation
#endif
#include <string.h>
#include "mysql_priv.h"
#include "my_pthread.h"
#ifdef HAVE_GEMINI_DB
#include "ha_gemini.h"
#include "dbconfig.h"
...
...
@@ -33,6 +29,7 @@
#include <m_ctype.h>
#include <myisampack.h>
#include <m_string.h>
#include <assert.h>
#include <hash.h>
#include <stdarg.h>
...
...
sql/mysqld.cc
View file @
83c9bb3b
...
...
@@ -88,7 +88,7 @@ int deny_severity = LOG_WARNING;
#endif
#ifdef _AIX41
int
initgroups
(
const
char
*
,
int
);
int
initgroups
(
const
char
*
,
unsigned
int
);
#endif
#if defined(__FreeBSD__) && defined(HAVE_IEEEFP_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