More Snoflake / next-jdbc funkiness:
(let [sql "select * from my_table"]
(sql/query db [sql])))
returns some fields names prefixed with :MY_TABLE/
namespace, and some withoutReturn values contain keys like :IMPORT_STATUS
and :MY_TABLE/IMPORT_START
seems to be issue with jdbc driver: ResultSetMetaData.getTableName(columnIndex) returns “” for some fields, and table name for some others
Definitely a Snowflake bug!
You can probably workaround around it by either using an unqualified
builder, or using a modified
builder with :qualifier-fn
.