Autogenerated from Appsmith

This commit is contained in:
2026-03-05 13:03:58 +00:00
parent a75ca9d4b3
commit 9614949714
2 changed files with 3 additions and 3 deletions

View File

@@ -21,9 +21,9 @@ SELECT
array_to_string(
ARRAY (
SELECT CONCAT(
split_part(regexp_replace(unres_path.path, E'\\','/','g'), '/', 1),
split_part(regexp_replace(unres_path.path, E'\\\\','/','g'), '/', 1),
'/.../',
regexp_replace(regexp_replace(unres_path.path, E'\\','/','g'), '^.*/', '')
regexp_replace(regexp_replace(unres_path.path, E'\\\\','/','g'), '^.*/', '')
)
FROM unnest(r.inventortools_unresolvedreferencepaths) AS unres_path(path)
),