admin管理员组文章数量:1345322
In postgresql, I have a user defined type like that:
create type my_type as (
ts timestamptz,
val int
)
Then a table using that type:
create table my_table (
id serial,
ds my_type
)
I can insert and query data into that table in sql easily, but I can't find a way to insert data into it through an xml dataset file used by @DatabaseSetup
for a test. I tried a few different variations like:
<my_table id="1"
ds='("2025-04-03 09:38:08", 2)'
ds.ts="2025-04-03 09:38:08"
ds.val="2">
Whatever the syntax I tried, it results in a .dbunit.dataset.NoSuchColumnException: my_table.ds - (Non-uppercase input column: ds) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
I can't put data into that column with a composite type. Any idea how to solve that?
本文标签: postgresqlinsert date in composite type during a DatabaseSetupStack Overflow
版权声明:本文标题:postgresql - insert date in composite type during a @DatabaseSetup - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743770062a2535958.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论