Arnab Animesh Das

Results 16 comments of Arnab Animesh Das

@Nytelife26 it is a good approach provided that the added function in the prelude works in the same way (mostly similar) as the conflicting dependency function name otherwise the warning...

Installed flutter 1.22.6 with dart 2.10.5 ``` Waiting for sdk gphone x86 arm to report its views... 7ms D/HostConnection( 9503): HostComposition ext ANDROID_EMU_CHECKSUM_HELPER_v1 ANDROID_EMU_native_sync_v2 ANDROID_EMU_native_sync_v3 ANDROID_EMU_native_sync_v4 ANDROID_EMU_dma_v1 ANDROID_EMU_direct_mem ANDROID_EMU_host_composition_v1 ANDROID_EMU_host_composition_v2...

During the initial build, the error was something like this ``` Skia args: is_official_build=true is_debug=false skia_enable_gpu=true skia_use_gl=true skia_use_egl=false skia_use_x11=false skia_use_system_libpng=false skia_use_libwebp_encode=false skia_use_libwebp_decode=false skia_use_system_zlib=false skia_use_xps=false skia_use_dng_sdk=false cc="clang" cxx="clang++" skia_use_icu=false skia_use_system_libjpeg_turbo=false cc="emcc"...

Are you building on windows? I had to build llvm from scratch just to make emcc work. This error is related to `ninja-command` command which prints a success message regarding...

Keeping this issue alive because duckdb doesn't work with windows msvc using C++ API.

I'll open another issue shortly using the latest stable release, but the original post in this thread is posted keeping msvc in mind and not mingw. I tried building the...

I would do result -> print(); but it wouldn't show any output. Even normal cout in the first line of the program wouldn't print anything. Cout prints properly if I...

It works when I built the main branch on my system. C++ API doesn't work when using the 0.8.1 version.

`min(null,1)` should not be `1`. `clip` bounds should propagate `null`s, otherwise it is performing actions which other users may not have asked for. `clip` should only deal with integers and...

> @arnabanimesh In SQL you have `LEAST` and `GREATEST` functions, and they do in fact behave as `LEAST(null, 1) == 1`. It seems it is not the case in mysql...