Skip to content

Commit 6efca84

Browse files
authored
WHERE naksha_tags(tags, flags) IS NOT NULL (#583)
* CASL-1824 IS NOT NULL condition Signed-off-by: phmai <phuc.mai@here.com> * CASL-1824 bump naksha version Signed-off-by: phmai <phuc.mai@here.com> --------- Signed-off-by: phmai <phuc.mai@here.com>
1 parent 6e2c116 commit 6efca84

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mavenPassword=YourPassword
1616
# here-naksha-lib-psql/src/commonMain/kotlin/naksha/psql/LibPsql.kt (adminVersion property)
1717
# Warning: Only update LibPsql version, if there is a change in SQL functions!
1818
# The reason is, that this version is encoded in the database, and when updated, forced an upgrade!
19-
version=3.0.0-beta.37
19+
version=3.0.0-beta.38
2020

2121
org.gradle.jvmargs=-Xmx12g
2222
kotlin.code.style=official

here-naksha-app-service/src/jvmMain/resources/swagger/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ servers:
1212
info:
1313
title: "Naskha Hub-API"
1414
description: "Naksha Hub-API is a REST API to provide simple access to geo data."
15-
version: "3.0.0-beta.37"
15+
version: "3.0.0-beta.38"
1616

1717
security:
1818
- AccessToken: [ ]

here-naksha-lib-model/src/commonMain/kotlin/naksha/model/NakshaVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class NakshaVersion(
8989
* The current version as string to constant usage cases.
9090
* @since 3.0
9191
*/
92-
const val CURRENT = "3.0.0-beta.37"
92+
const val CURRENT = "3.0.0-beta.38"
9393
// WARNING: Do not update this property manually, it is automatically modified when building!
9494
// Edit version only in `gradle.properties` file, which is used as well to create artifacts!
9595

here-naksha-lib-psql/src/commonMain/kotlin/naksha/psql/PgQueryWhereBuilder.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ internal class PgQueryWhereBuilder(private val request: ReadFeatures) {
322322
} else {
323323
where.append(" (")
324324
}
325+
where.append("($tagsAsJsonb IS NOT NULL) AND ")
325326
whereNestedTags(tagQuery)
326327
where.append(")")
327328
}

0 commit comments

Comments
 (0)