tinybird-toolset 2.4.0__tar.gz → 2.4.1__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.4.0/src/tinybird_toolset.egg-info → tinybird_toolset-2.4.1}/PKG-INFO +1 -1
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/conf.py +7 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/setup.py +1 -1
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1/src/tinybird_toolset.egg-info}/PKG-INFO +1 -1
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/LICENSE +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/MANIFEST.in +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/README.md +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/setup.cfg +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/chtoolset/__init__.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/chtoolset/query.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/tinybird_toolset.egg-info/SOURCES.txt +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/tinybird_toolset.egg-info/dependency_links.txt +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/tinybird_toolset.egg-info/requires.txt +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/tinybird_toolset.egg-info/top_level.txt +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_check_compatible_types.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_check_write_query.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_chquery.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_convert_to_row_binary.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_explain_ast.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_get_columns_from_create_query.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_get_left_table.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_internal_cache.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_normalize_query_keep_names.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_normalize_table_column.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_parse_create_materialized_view_target_table.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_replace_tables.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_replace_tables_backward_compat.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_rewrite_aggregation_states.py +0 -0
- {tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_tables.py +0 -0
|
@@ -30,6 +30,7 @@ ASAN_ENABLED = bool(os.environ.get('ASAN_ENABLED', '')) # AddressSanitizer
|
|
|
30
30
|
UBSAN_ENABLED = bool(os.environ.get('UBSAN_ENABLED', '')) # UndefinedBehaviorSanitizer
|
|
31
31
|
MSAN_ENABLED = bool(os.environ.get('MSAN_ENABLED', '')) # MemorySanitizer
|
|
32
32
|
TSAN_ENABLED = bool(os.environ.get('TSAN_ENABLED', '')) # ThreadSanitizer
|
|
33
|
+
THINLTO_FLAG = '-flto=thin'
|
|
33
34
|
|
|
34
35
|
|
|
35
36
|
def apply_patch(patch_path):
|
|
@@ -288,6 +289,9 @@ class CustomBuildWithFromCH(build_ext):
|
|
|
288
289
|
if TSAN_ENABLED:
|
|
289
290
|
other_list += ['-fsanitize=thread', '-fno-omit-frame-pointer', '-g']
|
|
290
291
|
|
|
292
|
+
if THINLTO_FLAG not in cflags_list:
|
|
293
|
+
other_list += [THINLTO_FLAG]
|
|
294
|
+
|
|
291
295
|
other_list += ['-DUSE_SIMDJSON=1']
|
|
292
296
|
other_list += ['-DSIMDJSON_THREADS_ENABLED=1']
|
|
293
297
|
|
|
@@ -304,6 +308,9 @@ class CustomBuildWithFromCH(build_ext):
|
|
|
304
308
|
link_flags.append('-g' if BUILD_FOR_VALGRIND or DEBUG_SYMBOLS else '-s')
|
|
305
309
|
link_flags.append('-Wl,--whole-archive')
|
|
306
310
|
|
|
311
|
+
if THINLTO_FLAG not in link_flags:
|
|
312
|
+
link_flags.append(THINLTO_FLAG)
|
|
313
|
+
|
|
307
314
|
# Remove some noise from CH link flags:
|
|
308
315
|
link_flags += ['-Wno-unused-command-line-argument']
|
|
309
316
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/tinybird_toolset.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/src/tinybird_toolset.egg-info/requires.txt
RENAMED
|
File without changes
|
{tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/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.4.0 → tinybird_toolset-2.4.1}/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
|
|
File without changes
|
{tinybird_toolset-2.4.0 → tinybird_toolset-2.4.1}/tests/test_replace_tables_backward_compat.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|