SQLTemplate: Make Ident only work for identifiers (not any string) (#92387)

This commit is contained in:
Ryan McKinley
2024-08-27 13:22:40 +03:00
committed by GitHub
parent 437747f250
commit 5a30e12a10
79 changed files with 284 additions and 261 deletions
@@ -1,8 +1,8 @@
SELECT
"resource_version"
FROM "resource_version"
`resource_version`
FROM `resource_version`
WHERE 1 = 1
AND "group" = ''
AND "resource" = ''
AND `group` = ''
AND `resource` = ''
FOR UPDATE
;