Skip to content

Commit

Permalink
feat: delete InExpression count limit (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov authored Nov 27, 2024
1 parent 3690721 commit b8bb680
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 4 additions & 0 deletions hibernate-dialect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.4.1 ##

- Deleted `InExpressionCountLimit`

## 1.4.0 ##

- Added hint for YQL pragma queries
Expand Down
2 changes: 1 addition & 1 deletion hibernate-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>tech.ydb.dialects</groupId>
<artifactId>hibernate-ydb-dialect</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>

<packaging>jar</packaging>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,6 @@ public boolean supportsPartitionBy() {
return true;
}

@Override
public int getInExpressionCountLimit() {
return 100;
}

@Override
public boolean supportsExistsInSelect() {
return false;
Expand Down

0 comments on commit b8bb680

Please sign in to comment.