We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a64feb commit acdd98aCopy full SHA for acdd98a
1 file changed
api/src/main/java/marquez/db/DatasetDao.java
@@ -275,7 +275,9 @@ DatasetRow upsert(
275
@SqlUpdate(
276
"""
277
UPDATE datasets d
278
- SET is_hidden = true
+ SET is_hidden = true,
279
+ is_deleted = true,
280
+ updated_at = CURRENT_TIMESTAMP
281
FROM namespaces n
282
WHERE n.uuid=d.namespace_uuid
283
AND n.name=:namespaceName
@@ -285,7 +287,9 @@ DatasetRow upsert(
285
287
@SqlQuery(
286
288
289
290
291
292
293
294
WHERE n.uuid = d.namespace_uuid
295
AND n.name=:namespaceName AND d.name=:name
0 commit comments