Informix - Incorrect data insert during db-db import
- Dominant language
- Java
- Stars
- 51.8k
- Forks
- 4.4k
- Avg merge
- 3d 13h
- Merged PRs (30d)
- 183
Description
### Description
STR:
Export table genre from sample db into informix db
Actual result - In the second column there is only the first letter from the original table. (NVARCHAR)

Source DDL
```
CREATE TABLE [Artist]
(
[ArtistId] INTEGER NOT NULL,
[Name] NVARCHAR(120),
CONSTRAINT [PK_Artist] PRIMARY KEY ([ArtistId])
);
```
Target DDL
```
CREATE TABLE sysuser:schemaowner.artist (
artistid integer NOT NULL,
name nvarchar(1)
)
```
### DBeaver Version
25.0.2
### Operating System
win 11
### Database and driver
_No response_
### Steps to reproduce
_No response_
### Additional context
_No response_
Contributor guide
Assessment
This issue has not been assessed yet.