mataralhawiti opened a new issue, #34089: URL: https://github.com/apache/beam/issues/34089
### What happened? We use JDBC cross-language transform to read data from MSSQL to BigQuery, and we noticed negative integers are being converted incorrectly. For example: if we have INT column in source with value (-1), it's being converted to (4294967295). Here's a snippet from our code: ``` import apache_beam as beam from apache_beam.io.jdbc import ReadFromJdbc from apache_beam.typehints.schemas import LogicalType from apache_beam.typehints.schemas import MillisInstant from apache_beam.options.pipeline_options import PipelineOptions import logging """ table1 CREATE TABLE Customers ( quanitity int, LastName varchar(255), ); INSERT INTO Customers (quanitity, LastName) VALUES (44, 'Tom'); INSERT INTO Customers (quanitity, LastName) VALUES (-1, 'Tom'); """ class LogResults(beam.DoFn): """Just log the results""" def process(self, element): logging.info("elment.logger - : %s", element) yield element def row_to_dict(row): as_dict = row._asdict() return as_dict def run(argv=None, save_main_session=True): # Start the pipeline pipeline_args = "" pipeline_options = PipelineOptions(pipeline_args, pipeline_type_check=True) LogicalType.register_logical_type(MillisInstant) with beam.Pipeline(options=pipeline_options) as p: p | "full-Read" >> ReadFromJdbc( query="select * from Customers", table_name=f"xxxxxx", driver_class_name="com.microsoft.sqlserver.jdbc.SQLServerDriver", jdbc_url="jdbc:sqlserver://{0};databaseName={1}".format("xx", "xx"), username="username", password="password", classpath=["gs://xxxxx/mssql-jdbc-12.6.2.jre11.jar"], ) "row to map" >> beam.Map(row_to_dict) "log result" | beam.ParDo(LogResults()) if __name__ == "__main__": logging.getLogger().setLevel(logging.DEBUG) run() ``` Here's the output: ``` elment.logger - : {'quanitity': 44, 'LastName': "Tom" } elment.logger - : {'quanitity': 4294967295, 'LastName': "Tom" } ``` **Environment:** Apache Beam 2.63.0 Google Cloud Dataflow ### Issue Priority Priority: 2 (default / most bugs should be filed as P2) ### Issue Components - [x] Component: Python SDK - [ ] Component: Java SDK - [ ] Component: Go SDK - [ ] Component: Typescript SDK - [x] Component: IO connector - [ ] Component: Beam YAML - [ ] Component: Beam examples - [ ] Component: Beam playground - [ ] Component: Beam katas - [ ] Component: Website - [ ] Component: Infrastructure - [ ] Component: Spark Runner - [ ] Component: Flink Runner - [ ] Component: Samza Runner - [ ] Component: Twister2 Runner - [ ] Component: Hazelcast Jet Runner - [x] Component: Google Cloud Dataflow Runner -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org