Table:
admin=# \d sal_emp
Table "public.sal_emp"
Column | Type | Collation | Nullable | Default
----------------+-----------+-----------+----------+---------
name | text | | |
pay_by_quarter | integer[] | | |
schedule | text[] | | |
Result:
(rcd-sql "SELECT schedule from sal_emp;" *admin*)
("{{meeting,lunch},{training,presentation}}" "{{meeting,lunch},{training,presentation},{Assigned,Jean}}")
In my opinion that is poor for Emacs Lisp to receive just textual representation of PostgreSQL arrays. I was expecting to receive some better structure.
Is it feasible to support PostgreSQL arrays so that Emacs Lisp receives better structure out of it?
Table:
Result:
In my opinion that is poor for Emacs Lisp to receive just textual representation of PostgreSQL arrays. I was expecting to receive some better structure.
Is it feasible to support PostgreSQL arrays so that Emacs Lisp receives better structure out of it?