Skip to content

Commit 61197a3

Browse files
findepiprrvchr
authored andcommitted
New HsqlDB connector
Bump com.nimbusds:nimbus-jose-jwt from 10.5 to 10.6 Bumps [com.nimbusds:nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 10.5 to 10.6. - [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt) - [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/10.6..10.5) --- updated-dependencies: - dependency-name: com.nimbusds:nimbus-jose-jwt dependency-version: '10.6' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Bump org.apache.hadoop.thirdparty:hadoop-shaded-guava Bumps org.apache.hadoop.thirdparty:hadoop-shaded-guava from 1.4.0 to 1.5.0. --- updated-dependencies: - dependency-name: org.apache.hadoop.thirdparty:hadoop-shaded-guava dependency-version: 1.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> New HsqlDB connector
1 parent 3ad45d3 commit 61197a3

File tree

21 files changed

+2840
-0
lines changed

21 files changed

+2840
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,7 @@ jobs:
370370
!:trino-hdfs,
371371
!:trino-hive,
372372
!:trino-hive-formats,
373+
!:trino-hsqldb,
373374
!:trino-hudi,
374375
!:trino-iceberg,
375376
!:trino-ignite,
@@ -491,6 +492,7 @@ jobs:
491492
- { modules: plugin/trino-hive }
492493
- { modules: plugin/trino-hive, profile: fte-tests }
493494
- { modules: plugin/trino-hive, profile: test-parquet }
495+
- { modules: plugin/trino-hsqldb }
494496
- { modules: plugin/trino-hudi }
495497
- { modules: plugin/trino-iceberg }
496498
- { modules: plugin/trino-iceberg, profile: cloud-tests }

core/trino-server/src/main/provisio/trino.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,12 @@
100100
</artifact>
101101
</artifactSet>
102102

103+
<artifactSet to="plugin/hsqldb">
104+
<artifact id="${project.groupId}:trino-hsqldb:zip:${project.version}">
105+
<unpack />
106+
</artifact>
107+
</artifactSet>
108+
103109
<artifactSet to="plugin/http-event-listener">
104110
<artifact id="${project.groupId}:trino-http-event-listener:zip:${project.version}">
105111
<unpack />
5.49 KB
Loading

plugin/trino-hsqldb/pom.xml

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>io.trino</groupId>
7+
<artifactId>trino-root</artifactId>
8+
<version>479-SNAPSHOT</version>
9+
<relativePath>../../pom.xml</relativePath>
10+
</parent>
11+
12+
<artifactId>trino-hsqldb</artifactId>
13+
<packaging>trino-plugin</packaging>
14+
<description>Trino - HsqlDB connector</description>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>com.google.guava</groupId>
19+
<artifactId>guava</artifactId>
20+
</dependency>
21+
22+
<dependency>
23+
<groupId>com.google.inject</groupId>
24+
<artifactId>guice</artifactId>
25+
<classifier>classes</classifier>
26+
</dependency>
27+
28+
<dependency>
29+
<groupId>io.airlift</groupId>
30+
<artifactId>configuration</artifactId>
31+
</dependency>
32+
33+
<dependency>
34+
<groupId>io.trino</groupId>
35+
<artifactId>trino-base-jdbc</artifactId>
36+
</dependency>
37+
38+
<dependency>
39+
<groupId>io.trino</groupId>
40+
<artifactId>trino-plugin-toolkit</artifactId>
41+
</dependency>
42+
43+
<dependency>
44+
<groupId>jakarta.validation</groupId>
45+
<artifactId>jakarta.validation-api</artifactId>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>org.hsqldb</groupId>
50+
<artifactId>hsqldb</artifactId>
51+
<version>2.7.4</version>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>com.fasterxml.jackson.core</groupId>
56+
<artifactId>jackson-annotations</artifactId>
57+
<scope>provided</scope>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>io.airlift</groupId>
62+
<artifactId>slice</artifactId>
63+
<scope>provided</scope>
64+
</dependency>
65+
66+
<dependency>
67+
<groupId>io.opentelemetry</groupId>
68+
<artifactId>opentelemetry-api</artifactId>
69+
<scope>provided</scope>
70+
</dependency>
71+
72+
<dependency>
73+
<groupId>io.opentelemetry</groupId>
74+
<artifactId>opentelemetry-api-incubator</artifactId>
75+
<scope>provided</scope>
76+
</dependency>
77+
78+
<dependency>
79+
<groupId>io.opentelemetry</groupId>
80+
<artifactId>opentelemetry-context</artifactId>
81+
<scope>provided</scope>
82+
</dependency>
83+
84+
<dependency>
85+
<groupId>io.trino</groupId>
86+
<artifactId>trino-spi</artifactId>
87+
<scope>provided</scope>
88+
</dependency>
89+
90+
<dependency>
91+
<groupId>org.openjdk.jol</groupId>
92+
<artifactId>jol-core</artifactId>
93+
<scope>provided</scope>
94+
</dependency>
95+
96+
<dependency>
97+
<groupId>com.google.errorprone</groupId>
98+
<artifactId>error_prone_annotations</artifactId>
99+
<scope>runtime</scope>
100+
</dependency>
101+
102+
<dependency>
103+
<groupId>io.airlift</groupId>
104+
<artifactId>log</artifactId>
105+
<scope>runtime</scope>
106+
</dependency>
107+
108+
<dependency>
109+
<groupId>io.airlift</groupId>
110+
<artifactId>log-manager</artifactId>
111+
<scope>runtime</scope>
112+
</dependency>
113+
114+
<dependency>
115+
<groupId>io.airlift</groupId>
116+
<artifactId>units</artifactId>
117+
<scope>runtime</scope>
118+
</dependency>
119+
120+
<dependency>
121+
<groupId>io.airlift</groupId>
122+
<artifactId>junit-extensions</artifactId>
123+
<scope>test</scope>
124+
</dependency>
125+
126+
<dependency>
127+
<groupId>io.airlift</groupId>
128+
<artifactId>testing</artifactId>
129+
<scope>test</scope>
130+
</dependency>
131+
132+
<dependency>
133+
<groupId>io.trino</groupId>
134+
<artifactId>trino-base-jdbc</artifactId>
135+
<type>test-jar</type>
136+
<scope>test</scope>
137+
</dependency>
138+
139+
<dependency>
140+
<groupId>io.trino</groupId>
141+
<artifactId>trino-exchange-filesystem</artifactId>
142+
<scope>test</scope>
143+
</dependency>
144+
145+
<dependency>
146+
<groupId>io.trino</groupId>
147+
<artifactId>trino-main</artifactId>
148+
<scope>test</scope>
149+
</dependency>
150+
151+
<dependency>
152+
<groupId>io.trino</groupId>
153+
<artifactId>trino-main</artifactId>
154+
<type>test-jar</type>
155+
<scope>test</scope>
156+
</dependency>
157+
158+
<dependency>
159+
<groupId>io.trino</groupId>
160+
<artifactId>trino-plugin-toolkit</artifactId>
161+
<type>test-jar</type>
162+
<scope>test</scope>
163+
</dependency>
164+
165+
<dependency>
166+
<groupId>io.trino</groupId>
167+
<artifactId>trino-testing</artifactId>
168+
<scope>test</scope>
169+
</dependency>
170+
171+
<dependency>
172+
<groupId>io.trino</groupId>
173+
<artifactId>trino-testing-containers</artifactId>
174+
<scope>test</scope>
175+
</dependency>
176+
177+
<dependency>
178+
<groupId>io.trino</groupId>
179+
<artifactId>trino-testing-services</artifactId>
180+
<scope>test</scope>
181+
</dependency>
182+
183+
<dependency>
184+
<groupId>io.trino</groupId>
185+
<artifactId>trino-tpch</artifactId>
186+
<scope>test</scope>
187+
</dependency>
188+
189+
<dependency>
190+
<groupId>io.trino.tpch</groupId>
191+
<artifactId>tpch</artifactId>
192+
<scope>test</scope>
193+
</dependency>
194+
195+
<dependency>
196+
<groupId>org.assertj</groupId>
197+
<artifactId>assertj-core</artifactId>
198+
<scope>test</scope>
199+
</dependency>
200+
201+
<dependency>
202+
<groupId>org.jetbrains</groupId>
203+
<artifactId>annotations</artifactId>
204+
<scope>test</scope>
205+
</dependency>
206+
207+
<dependency>
208+
<groupId>org.junit.jupiter</groupId>
209+
<artifactId>junit-jupiter-api</artifactId>
210+
<scope>test</scope>
211+
</dependency>
212+
213+
<dependency>
214+
<groupId>org.junit.jupiter</groupId>
215+
<artifactId>junit-jupiter-engine</artifactId>
216+
<scope>test</scope>
217+
</dependency>
218+
219+
<dependency>
220+
<groupId>org.testcontainers</groupId>
221+
<artifactId>testcontainers</artifactId>
222+
<scope>test</scope>
223+
</dependency>
224+
</dependencies>
225+
</project>

0 commit comments

Comments
 (0)