From: | John Klos <john(at)ziaspace(dot)com> |
---|---|
To: | Robert Haas <robertmhaas(at)gmail(dot)com> |
Cc: | port-vax(at)netbsd(dot)org, vax(at)openbsd(dot)org, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: PostgreSQL for VAX on NetBSD/OpenBSD |
Date: | 2014-06-25 17:58:15 |
Message-ID: | Pine.NEB.4.64.1406251737220.1624@andromeda.ziaspace.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
> Well, the fact that initdb didn't produce a working configuration and
> that make installcheck failed to work properly are bad. But, yeah,
> it's not totally broken.
I think it did create a working configuration (with the exception of
postgresql.conf), because I can run psql and do stuff on the command line:
psql --username=pgsql postgres
psql (9.3.4)
Type "help" for help.
postgres=# CREATE DATABASE test;
CREATE DATABASE
postgres=# CREATE USER testuser WITH PASSWORD 'test';
CREATE ROLE
postgres=# GRANT ALL PRIVILEGES ON DATABASE test to testuser;
GRANT
postgres=# CREATE SCHEMA testschema;
CREATE SCHEMA
postgres=# CREATE TABLE testschema.testtable (testserial serial PRIMARY
KEY, testchar varchar (100) NOT NULL);
CREATE TABLE
I don't know enough to really test this. Can you recommend a simple script
to do some PostgreSQL testing?
John
From | Date | Subject | |
---|---|---|---|
Next Message | Sawada Masahiko | 2014-06-25 18:07:24 | Re: TODO : Allow parallel cores to be used by vacuumdb [ WIP ] |
Previous Message | Tom Lane | 2014-06-25 17:57:12 | Re: PostgreSQL for VAX on NetBSD/OpenBSD |