Hi Sabra,

user> (s-sql:sql (:select 'pg_attribute.attname (:format-type
'pg_attribute.atttypid 'pg_attribute.atttypmod)
                           :from 'pg_index 'pg_class 'pg_attribute
                           :where (:and (:= 'pg_class.oid (:type '$1 regclass))
                                        (:= 'indrelid 'pg_class.oid)
                                        (:= 'pg_attribute.attrelid
'pg_class.oid)
                                        (:= 'pg_attribute.attnum
(:any* 'pg_index.indkey)))))

This gives me a query similar to what you want. Note the clunky :any*
-- this is because Postgres has both a function-call-style any and an
infix any, and S-SQL's syntax doesn't allow them to be distinguished.

Best,
Marijn

_______________________________________________
postmodern-devel mailing list
postmodern-devel@common-lisp.net
http://common-lisp.net/cgi-bin/mailman/listinfo/postmodern-devel

Reply via email to