Spread Insert does not work for array columns.
オープン
- 主要言語
- TypeScript
- スター
- 157
- フォーク
- 7
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
```js
sql`insert into test_table ${spreadInsert({
array_column: ['a','b','c','d'],
})}`;
```
Yields
```postgresql
insert into "test_table" ("array_column") VALUES ($1, $2, $3, $4)
```
rather than joining and formatting the array value as such
```postgresql
ARRAY['a','b','c','d']
```
or
```postgresql
'{"a","b","c","d"}'
```
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
評価
この issue はまだ評価されていません。