Skip to content

Commit

Permalink
overwrite H2 files to compare boolean and varchars
Browse files Browse the repository at this point in the history
- dont do padding in char columns in legacy mode
  • Loading branch information
PrateekGarg-gs committed Oct 21, 2024
1 parent b169f66 commit db2b763
Show file tree
Hide file tree
Showing 5 changed files with 2,392 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2024 Goldman Sachs
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.finos.legend.engine</groupId>
<artifactId>legend-engine-xt-relationalStore-h2</artifactId>
<version>4.63.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>


<artifactId>legend-engine-xt-relationalStore-h2-execution-2.1.214</artifactId>
<packaging>jar</packaging>
<name>Legend Engine - XT - Relational Store - H2 - Execution - 2.1.214</name>


<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<!-- H2 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.1.214</version>
</dependency>

<!-- TEST -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit db2b763

Please sign in to comment.