azhu26

Results 16 comments of azhu26

I can confirm the issue. it emerged in the latest vesion: 3.1.2. On the other hand, if downgrading openpyxl to 3.0.10, the ValueError will be gone. see discussion here: https://github.com/pandas-dev/pandas/issues/53238...

I made my attempt with the replacement of the following, from: return [system.digits[0] * (len(value_string) - len(striped_string)), system.digits[int(striped_string)]] to return [system.digits[0], system.digits[int(striped_string)]] that is, no need for multiplication (and that...

Hi, hvlad: Thank you for confirming the c++ dialect issue in configure.ac. With firebird 4.0.4 as an example, I patched my local tarball with the following from diff utility updating...

changing in make.defaults works partially. I can see some object files are generated with c++20 while others still with c++11. the previous gds works now. but it seems that it...

here is the end session from make that shows the above mentioned error: ``` g++ -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=3 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -Wp,-D_GLIBCXX_ASSERTIONS -g...

it seems that isql commend requires to link libfdbclient.so; this shared library, by arch's PKGBUILD, is not available yet at this stage to the system. anyway to disable this test?

the segmentation fault is from isql running against metadata.sql. However, this is still in make stage the required libfbclient for isql still resides in build tree and can not be...

a bit detail on the failure to run isql in make: 1. In make, the step to run isql is done to run against metadata.sql. at this stage most of,...

Hi, AlexPeshkoff: Thanks. The error occurs regardless of c++11 dialect change in extern. where can I find the suggestion 'by DS'?

here are two gdb sessions: one without LD_LIBRARY_PATH and the other with LD_LIBRARY_PATH to the gen/Release/firebird/lib which contains libfbclient.so.2 case 1: ``` GNU gdb (GDB) 14.2 Copyright (C) 2023 Free...