mirror of
https://github.com/alibaba/DataX.git
synced 2025-05-02 06:50:35 +08:00
Merge a60d1f5ef5
into 0824b45c5e
This commit is contained in:
commit
a6b71c367a
@ -71,6 +71,8 @@ public class PostgresqlWriter extends Writer {
|
|||||||
return "?::int8";
|
return "?::int8";
|
||||||
}else if("bit".equalsIgnoreCase(columnType)){
|
}else if("bit".equalsIgnoreCase(columnType)){
|
||||||
return "?::bit varying";
|
return "?::bit varying";
|
||||||
|
}else if("bigserial".equalsIgnoreCase(columnType)){
|
||||||
|
return "?::int8";
|
||||||
}
|
}
|
||||||
return "?::" + columnType;
|
return "?::" + columnType;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user