Browse Source

Fix ambiguous column names in `tootctl search deploy` (#18993)

Mashiro 1 year ago
parent
commit
656ac99ef0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/lib/importer/statuses_index_importer.rb

+ 1 - 1
app/lib/importer/statuses_index_importer.rb

@@ -84,6 +84,6 @@ class Importer::StatusesIndexImporter < Importer::BaseImporter
   end
 
   def local_statuses_scope
-    Status.local.select('id, coalesce(reblog_of_id, id) as status_id')
+    Status.local.select('"statuses"."id", COALESCE("statuses"."reblog_of_id", "statuses"."id") AS status_id')
   end
 end