mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
ConnectSE: making odbc_postgresql.test independent from
the system locale (on Linux) and code pages (on Windows).
This commit is contained in:
parent
a58e4e8af1
commit
1e711c8d04
3 changed files with 6 additions and 2 deletions
|
@ -13,3 +13,5 @@ MASTER_MYSOCK= @mysqld.1.socket
|
||||||
|
|
||||||
SLAVE_MYPORT= @mysqld.2.port
|
SLAVE_MYPORT= @mysqld.2.port
|
||||||
SLAVE_MYSOCK= @mysqld.2.socket
|
SLAVE_MYSOCK= @mysqld.2.socket
|
||||||
|
|
||||||
|
PGCLIENTENCODING= UTF8
|
||||||
|
|
|
@ -2,7 +2,9 @@
|
||||||
-- The SQL script to create PostgreSQL data for odbc_postgresql.test
|
-- The SQL script to create PostgreSQL data for odbc_postgresql.test
|
||||||
--
|
--
|
||||||
-- Run this script as a admin user:
|
-- Run this script as a admin user:
|
||||||
-- sudo -u postgres psql < odbc_postgresql.create.sql
|
-- psql -U postgres < odbc_postgresql.sql
|
||||||
|
|
||||||
|
SET NAMES 'UTF8';
|
||||||
|
|
||||||
DROP DATABASE IF EXISTS mtr;
|
DROP DATABASE IF EXISTS mtr;
|
||||||
DROP USER IF EXISTS mtr;
|
DROP USER IF EXISTS mtr;
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
# 1. Install and configure PostgreSQL database to stat on the system startup
|
# 1. Install and configure PostgreSQL database to stat on the system startup
|
||||||
#
|
#
|
||||||
# 2. Create user, database, schema and tables to be used by mtr:
|
# 2. Create user, database, schema and tables to be used by mtr:
|
||||||
# sudo -u postgres < odbc_postgresql.sql
|
# psql -U postgres < odbc_postgresql.sql
|
||||||
#
|
#
|
||||||
# 3. Install PostgreSQL ODBC Driver.
|
# 3. Install PostgreSQL ODBC Driver.
|
||||||
# - On CentOS, Fedora:
|
# - On CentOS, Fedora:
|
||||||
|
|
Loading…
Reference in a new issue