Skip to content

Commit

Permalink
Fixed broken link (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Jul 7, 2023
1 parent 7610f55 commit 26a563d
Show file tree
Hide file tree
Showing 8 changed files with 134 additions and 58 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/broken_links_checker.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 38 additions & 35 deletions dependencies.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions doc/changes/changes_2.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Virtual Schema for SQLServer 2.1.1, released 2023-??-??

Code name:

## Summary

## Features

* ISSUE_NUMBER: description

## Dependency Updates

### Compile Dependency Updates

* Updated `com.exasol:virtual-schema-common-jdbc:10.4.0` to `11.0.0`

### Test Dependency Updates

* Updated `com.exasol:exasol-testcontainers:6.5.1` to `6.6.1`
* Updated `com.exasol:hamcrest-resultset-matcher:1.5.2` to `1.6.0`
* Updated `com.exasol:virtual-schema-common-jdbc:10.4.0` to `11.0.0`
* Updated `org.junit.jupiter:junit-jupiter:5.9.2` to `5.9.3`
* Updated `org.mockito:mockito-junit-jupiter:5.2.0` to `5.4.0`
* Updated `org.testcontainers:junit-jupiter:1.17.6` to `1.18.3`
* Updated `org.testcontainers:mssqlserver:1.17.6` to `1.18.3`

### Plugin Dependency Updates

* Updated `com.exasol:error-code-crawler-maven-plugin:1.2.2` to `1.3.0`
* Updated `com.exasol:project-keeper-maven-plugin:2.9.3` to `2.9.9`
* Updated `org.apache.maven.plugins:maven-assembly-plugin:3.4.2` to `3.6.0`
* Updated `org.apache.maven.plugins:maven-compiler-plugin:3.10.1` to `3.11.0`
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.1.0` to `3.3.0`
* Updated `org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M8` to `3.1.2`
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M8` to `3.1.2`
* Added `org.basepom.maven:duplicate-finder-maven-plugin:2.0.1`
* Updated `org.codehaus.mojo:flatten-maven-plugin:1.3.0` to `1.5.0`
* Updated `org.codehaus.mojo:versions-maven-plugin:2.14.2` to `2.16.0`
* Updated `org.jacoco:jacoco-maven-plugin:0.8.8` to `0.8.10`
4 changes: 2 additions & 2 deletions doc/user_guide/sqlserver_user_guide.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Microsoft SQL Server SQL Dialect User Guide

[Microsoft SQL Server](https://www.microsoft.com/en-us/sql-server/sql-server-2017) is a Relational Database Management System (RDBMS) developed by Microsoft.
[Microsoft SQL Server](https://www.microsoft.com/en-us/sql-server/sql-server) is a Relational Database Management System (RDBMS) developed by Microsoft.

## Registering the JDBC Driver in EXAOperation

Expand Down Expand Up @@ -46,7 +46,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT SCHEMA_FOR_VS_SCRIPT.ADAPTER_SCRIPT_SQLSERVER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-10.4.0-sqlserver-2.1.0.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-11.0.0-sqlserver-2.1.1.jar;
%jar /buckets/<BFS service>/<bucket>/mssql-jdbc-<version>.jre8.jar;
/
```
Expand Down
53 changes: 42 additions & 11 deletions pk_generated_parent.pom

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>sqlserver-virtual-schema</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
<name>Virtual Schema for SQLServer</name>
<description>Abstraction layer that makes an external Microsoft SQL Server database accessible from an Exasol database through regular SQL commands</description>
<url>https://github.com/exasol/sqlserver-virtual-schema/</url>
<properties>
<vscjdbc.version>10.4.0</vscjdbc.version>
<org.testcontainers.version>1.17.6</org.testcontainers.version>
<vscjdbc.version>11.0.0</vscjdbc.version>
<org.testcontainers.version>1.18.3</org.testcontainers.version>
</properties>
<repositories>
<repository>
Expand Down Expand Up @@ -59,20 +59,20 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.2</version>
<version>5.9.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>5.2.0</version>
<version>5.4.0</version>
<scope>test</scope>
</dependency>
<!--Integration test dependencies -->
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>6.5.1</version>
<version>6.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -103,7 +103,7 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>hamcrest-resultset-matcher</artifactId>
<version>1.5.2</version>
<version>1.6.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -135,7 +135,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>2.9.3</version>
<version>2.9.9</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -168,7 +168,7 @@
<parent>
<artifactId>sqlserver-virtual-schema-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>2.1.0</version>
<version>2.1.1</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SQLServerSqlDialectIT {
private static final String VIRTUAL_SCHEMA_JDBC = "VIRTUAL_SCHEMA_JDBC";
private static final String JDBC_DRIVER_NAME = "mssql-jdbc.jar";
private static final Path JDBC_DRIVER_PATH = Path.of("target/sqlserver-driver/" + JDBC_DRIVER_NAME);
public static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-10.4.0-sqlserver-2.1.0.jar";
public static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-11.0.0-sqlserver-2.1.1.jar";
public static final String EXASOL_DOCKER_IMAGE_REFERENCE = "exasol/docker-db:7.1.13";
public static final Path PATH_TO_VIRTUAL_SCHEMAS_JAR = Path.of("target", VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION);
public static final String SCHEMA_EXASOL = "SCHEMA_EXASOL";
Expand Down

0 comments on commit 26a563d

Please sign in to comment.