We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be47d39 commit 6c32671Copy full SHA for 6c32671
oshdb-util/src/main/java/org/heigit/ohsome/oshdb/util/tagtranslator/JdbcTagTranslator.java
@@ -18,6 +18,7 @@
18
import org.heigit.ohsome.oshdb.util.exceptions.OSHDBException;
19
20
public class JdbcTagTranslator implements TagTranslator {
21
+
22
private static final String OSM_OSHDB_KEY = String.format("SELECT id, txt"
23
+ " from %s k"
24
+ " where k.txt = ?", TableNames.E_KEY);
@@ -27,7 +28,6 @@ public class JdbcTagTranslator implements TagTranslator {
27
28
+ " left join %s kv on k.id = kv.keyid"
29
+ " where k.txt = ? and kv.txt = any (?)", TableNames.E_KEY, TableNames.E_KEYVALUE);
30
-
31
private static final String OSHDB_OSM_KEY = String.format("SELECT txt, id"
32
+ " from %s"
33
+ " where id = any(?)", TableNames.E_KEY);
0 commit comments