-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
48 lines (32 loc) · 1.11 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
pgTSQL
======
Overview
--------
pgTSQL is an extension that provides a PostgreSQL procedural language that
implements the Transact-SQL language. Additionally, the extension provides a
number of built-in functions that are compatible with Sybase and SQL Server.
Core Committers
----------------
Denis Lussier <[email protected]>
Muhammed Harroon <[email protected]>
Binaries
--------
For pre-built PostgreSQL binaries that include pgTSQL, take a look at:
http://tpostgres.org
http://bigsql.org
Building from Source
--------------------
The "master" branch is for building against PG 9.4... The "9.3" branch
is for PG 9.3. If you need a version built against an older version of
PG then let me know ([email protected]).
For installation there must be PostgreSQL dev environment installed
and pg_config in the PATH. Then just run:
$ make
$ make install
To run regression tests:
$ make installcheck
Notes:
* Location to pg_config can be set via PG_CONFIG variable:
$ make PG_CONFIG=/path/to/pg_config
$ make install PG_CONFIG=/path/to/pg_config
$ make installcheck PG_CONFIG=/path/to/pg_config