Caio Hamamura

Results 38 comments of Caio Hamamura

Now I added compilation and tests support for windows using the official toolchain. ## Note: question? Would it be better if we provided a github release for the windows toolchain...

It needs the MSYS2 for compiling, so we need both: - MSYS2: https://dl.espressif.com/dl/esp32_win32_msys2_environment_and_toolchain-20181001.zip - Toolkit: https://dl.espressif.com/dl/xtensa-lx106-elf-gcc8_4_0-esp-2020r3-win32.zip

Will you create the releases there? Then if you could provide me the links to update this PR.

> GitHub doesn't allow artifacts >100MB in repositories without Git LFS. Hence, that repository now uses LFS to track those two files. Their raw location is as follows: > >...

You can check this by using: ```python from sqlalchemy import create_engine eng = create_engine("duckdb:///:memory:", execution_options={"isolation_level": "AUTOCOMMIT"}) try: conn = eng.connect() except NotImplementedError: print('Expected not implemented error raised!') except Exception as...

I rebased against main for merging!

Or if you want to wrap it within `unittest` for automated tests: ```python from sqlalchemy import create_engine import unittest class TestDuckDBDialect(unittest.TestCase): def test_set_isolation_level_not_supported(self): eng = create_engine("duckdb:///:memory:", execution_options={"isolation_level": "AUTOCOMMIT"}) with self.assertRaises(NotImplementedError):...