View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0005949 | SymmetricDS | Improvement | public | 2023-08-08 22:48 | 2024-10-01 23:11 |
Reporter | edudebom | Assigned To | |||
Priority | low | ||||
Status | new | Resolution | open | ||
Product Version | 3.14.8 | ||||
Summary | 0005949: Sybase2Postres - BIT VARYING Error | ||||
Description | Error onCreate Table | ||||
Steps To Reproduce | --Sybase create table teste.replicacao_postgresql ( ID INTEGER, I_BIT_VARYING BIT VARYING(500) ); <?xml version="1.0"?> <!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database"> <database name="dataextractor" schema="teste"> <table name="replicacao_postgresql"> <column name="ID" type="INTEGER" size="10"> <platform-column name="sqlanywhere" type="int" size="10"/> </column> <column name="I_BIT_VARYING" type="BINARY" size="500"> <platform-column name="sqlanywhere" type="varbit" size="500"/> </column> </table> </database> --Postgres Result: [JdbcSqlTemplate] ERROR: column "i_bit_varying" is of type bytea but expression is of type bit varying CREATE TABLE "teste"."replicacao_postgresql"( "id" INTEGER, "i_bit_varying" BYTEA ); | ||||
Additional Information | I believe could be the same BIT VARYING(500): CREATE TABLE "teste"."replicacao_postgresql"( "id" INTEGER, "i_bit_varying" BIT VARYING(500) ); | ||||
Tags | No tags attached. | ||||
related to | 0006605 | new | Support for cross platform BIT data type size > 1 (bit varying, varbit, bit string, bit array) |