File tree Expand file tree Collapse file tree
src/main/java/se/alipsa/jparq Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >se.alipsa</groupId >
66 <artifactId >jparq</artifactId >
7- <version >0.10.0-SNAPSHOT </version >
7+ <version >0.10.0</version >
88 <name >JDBC Driver for Parquet files</name >
99
1010 <description >JDBC Driver for reading Parquet files</description >
3030 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
3131
3232 <avro .version>1.12.1</avro .version>
33- <checkstyle .version>12.1.1 </checkstyle .version>
33+ <checkstyle .version>12.1.2 </checkstyle .version>
3434 <checkstyle .plugin.version>3.6.0</checkstyle .plugin.version>
3535 <hadoop .version>3.4.2</hadoop .version>
3636 <jsqlparser .version>5.3</jsqlparser .version>
Original file line number Diff line number Diff line change 11# Version history
22
3+ ### 0.10.0 (2025-11-12)
4+ - Add support for grouping sets, rollup, and cube in the GROUP BY clause
5+ - Add support for qualified wildcards (table.* ) in SELECT statements
6+ - Add support for the ARRAY constructor function to create array literals
7+
38### 0.9.0 (2025-11-09)
49- Add support for Windowing functions i.e:
510 - Ranking functions
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public String getDatabaseProductName() {
4444
4545 @ Override
4646 public String getDatabaseProductVersion () {
47- return "0.9 .0" ;
47+ return "0.10 .0" ;
4848 }
4949
5050 @ Override
@@ -54,7 +54,7 @@ public String getDriverName() {
5454
5555 @ Override
5656 public String getDriverVersion () {
57- return "0.9 .0" ;
57+ return "0.10 .0" ;
5858 }
5959
6060 @ Override
@@ -64,7 +64,7 @@ public int getDriverMajorVersion() {
6464
6565 @ Override
6666 public int getDriverMinorVersion () {
67- return 9 ;
67+ return 10 ;
6868 }
6969
7070 @ Override
You can’t perform that action at this time.
0 commit comments