forked from tada/pljava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractPGXSMock.java
More file actions
34 lines (31 loc) · 921 Bytes
/
Copy pathAbstractPGXSMock.java
File metadata and controls
34 lines (31 loc) · 921 Bytes
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
/*
* Copyright (c) 2020 Tada AB and other contributors, as listed below.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the The BSD 3-Clause License
* which accompanies this distribution, and is available at
* http://opensource.org/licenses/BSD-3-Clause
*
* Contributors:
* Kartik Ohri
*/
import org.postgresql.pljava.pgxs.AbstractPGXS;
import java.nio.file.Path;
import java.util.List;
import java.util.Map;
public class AbstractPGXSMock extends AbstractPGXS
{
@Override
public int compile(String compiler, List<String> files, Path targetPath,
List<String> includes, Map<String, String> defines,
List<String> flags)
{
throw new UnsupportedOperationException();
}
@Override
public int link(String linker, List<String> flags, List<String> files,
Path targetPath)
{
throw new UnsupportedOperationException();
}
}