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