Skip to content

Commit a1da2e1

Browse files
committed
chore: generate initial structure to ocnverter of Oracle nosql
Signed-off-by: Otavio Santana <[email protected]>
1 parent 7b16d09 commit a1da2e1

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

jnosql-oracle-nosql/src/main/java/org/eclipse/jnosql/databases/oracle/communication/AbstractQueryBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ protected void condition(CriteriaCondition condition, StringBuilder query, List<
6464
case GREATER_EQUALS_THAN:
6565
predicate(query, " >= ", document, params);
6666
return;
67-
/* case LIKE:
67+
case LIKE:
6868
predicate(query, " LIKE ", document, params);
69-
return;*/
69+
return;
7070
case NOT:
7171
query.append(" NOT ");
7272
condition(document.get(CriteriaCondition.class), query, params, ids);
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
3+
* All rights reserved. This program and the accompanying materials
4+
* are made available under the terms of the Eclipse Public License v1.0
5+
* and Apache License v2.0 which accompanies this distribution.
6+
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
7+
* and the Apache License v2.0 is available at http://www.opensource.org/licenses/apache2.0.php.
8+
*
9+
* You may elect to redistribute this code under either of these licenses.
10+
*
11+
* Contributors:
12+
*
13+
* Otavio Santana
14+
*/
15+
package org.eclipse.jnosql.databases.oracle.communication;
16+
17+
enum OracleNoSqlLikeConverter {
18+
}

0 commit comments

Comments
 (0)