tinybird-toolset 2.2.1__tar.gz → 2.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tinybird_toolset-2.2.1/src/tinybird_toolset.egg-info → tinybird_toolset-2.2.2}/PKG-INFO +1 -1
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/README.md +1 -1
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/conf.py +1 -1
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/setup.py +1 -1
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2/src/tinybird_toolset.egg-info}/PKG-INFO +1 -1
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/LICENSE +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/MANIFEST.in +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/setup.cfg +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/chtoolset/__init__.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/chtoolset/query.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/tinybird_toolset.egg-info/SOURCES.txt +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/tinybird_toolset.egg-info/dependency_links.txt +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/tinybird_toolset.egg-info/requires.txt +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/tinybird_toolset.egg-info/top_level.txt +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_check_compatible_types.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_check_write_query.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_chquery.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_convert_to_row_binary.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_explain_ast.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_get_columns_from_create_query.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_get_left_table.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_internal_cache.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_normalize_query_keep_names.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_parse_create_materialized_view_target_table.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_replace_tables.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_replace_tables_backward_compat.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_rewrite_aggregation_states.py +0 -0
- {tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_tables.py +0 -0
|
@@ -208,7 +208,7 @@ make build
|
|
|
208
208
|
A couple of environment variables can be defined with a non-empty value to help retrying the compilation and debugging:
|
|
209
209
|
|
|
210
210
|
* `OMIT_PATCHES` prevents the application of the ClickHouse patches: this is useful if you've already applied them to avoid having to restore the original source code, since some patches may not re-apply cleanly.
|
|
211
|
-
* `DEBUG_SYMBOLS`
|
|
211
|
+
* `DEBUG_SYMBOLS` controls the generation of debug symbols for the python extension code (query.cpp and the C++ functions, but not for the ClickHouse code). It is enabled by default for package builds; set `DEBUG_SYMBOLS=0` to disable it.
|
|
212
212
|
|
|
213
213
|
## Examples
|
|
214
214
|
|
|
@@ -21,7 +21,7 @@ COMPILER_CC = os.environ.get('CC', 'clang')
|
|
|
21
21
|
COMPILER_CXX = os.environ.get('CXX', 'clang++')
|
|
22
22
|
|
|
23
23
|
BUILD_FOR_VALGRIND = bool(os.environ.get('BUILD_FOR_VALGRIND', ''))
|
|
24
|
-
DEBUG_SYMBOLS =
|
|
24
|
+
DEBUG_SYMBOLS = os.environ.get('DEBUG_SYMBOLS', '1').lower() not in ('', '0', 'false', 'no')
|
|
25
25
|
OMIT_PATCHES = bool(os.environ.get('OMIT_PATCHES', ''))
|
|
26
26
|
SIMDJSON_DEBUG = bool(os.environ.get('SIMDJSON_DEBUG', ''))
|
|
27
27
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/tinybird_toolset.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/tinybird_toolset.egg-info/requires.txt
RENAMED
|
File without changes
|
{tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/src/tinybird_toolset.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_get_columns_from_create_query.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tinybird_toolset-2.2.1 → tinybird_toolset-2.2.2}/tests/test_replace_tables_backward_compat.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|