honeysql

Nick McAvoy 2023-11-10T00:35:08.066129Z

Query a and query b return the same set of keys, but if I do (-> query-a (union query-b)), the resulting keys are not namespaced. e.g. instead of :atable/column_a, just :column_a. Is this expected? Is there any easy workaround? Thank you!

seancorfield 2023-11-10T03:49:28.416089Z

It's up to the database/driver whether table names are provided to the caller. If next.jdbc doesn't return qualified keys, then the driver didn't make table names available. (And this has nothing to do with HoneySQL)