Fix SQL identifier quoting for netzverknüpfungspunkt to handle umlauts properly
Deploy TrassenPlaner / deploy (push) Waiting to run
Details
Deploy TrassenPlaner / deploy (push) Waiting to run
Details
This commit is contained in:
parent
6cd1ec4145
commit
a0c9a45377
|
|
@ -158,7 +158,7 @@ app.get('/api/poi', async (req, res) => {
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
id,
|
||||||
ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry
|
ST_AsGeoJSON(ST_Transform(geom, 4326)) as geometry
|
||||||
FROM netzverknüpfungspunkt
|
FROM "netzverknüpfungspunkt"
|
||||||
`;
|
`;
|
||||||
const result = await client.query(query);
|
const result = await client.query(query);
|
||||||
const geojson = {
|
const geojson = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue