honeysql

daniel.flexiana 2023-04-24T12:15:46.764349Z

Hi, is there a way to use :quoted together with if exists? (sql/format (hh/drop-view [:if-exists] :aBc) {:quoted true}) ; => ["DROP VIEW IF EXISTS ABC"] (sql/format (hh/drop-view :aBc) {:quoted true}) ; => ["DROP VIEW \"aBc\""] Expected: (sql/format (hh/drop-view [:if-exists] :aBc) {:quoted true}) ; => ["DROP VIEW IF EXISTS \"aBc\""]

✅ 1
p-himik 2023-04-24T12:18:36.633639Z

(sql/format (hh/drop-view :if-exists :aBc) {:quoted true})
=> ["DROP VIEW IF EXISTS \"aBc\""]

❤️ 1