ClickHouse / clickhouse-cpp

C++ client library for ClickHouse
Apache License 2.0
306 stars 159 forks source link

Fix abnormal column names in gcc7.3.1 #317

Closed alenstarx closed 1 year ago

alenstarx commented 1 year ago

Fix abnormal column names in gcc7.3.1

example: "select 123,231,113"

on gcc7.3.1 output: name:113, type:UInt8 name:113, type:UInt8 name:113, type:UInt8

on gcc9.3.1 output: name:123, type:UInt8 name:231, type:UInt8 name:113, type:UInt8

CLAassistant commented 1 year ago

CLA assistant check
All committers have signed the CLA.

alenstarx commented 1 year ago

Looks good, but please add a test

OK, Test has been added.