-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Begin Profiling Rework to move towards Modularity #10935
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…to fast and slow test
* Fix function naming to match the project style * Optimize some uhugeint bit operations * Drop the unnecessary numeric_cast header and associated pragmas
…ions-to-spark-api [Python] Add some numeric and string functions to spark API
[ODBC] Allow multiple statements to be executed using SQLExecDirect
[CSV Reader] Apply projection on over buffer values.
Python: use short paths for Windows
Fix duckdb#10752: Add support for Parquet encryption on Windows
…-compliant [Python] Code Quality - PEP8 Compliant + only relevant imports
[CI] Add patch argument to patch the extension's sources before building
fix(jdbc): support fractional seconds in getTime
Fix duckdb#11071 - correctly report progress when scanning multiple Parquet files
Add ipv6 inet + minor fixes
# Conflicts: # src/include/duckdb/main/database_manager.hpp # src/main/database_manager.cpp
This reverts commit 6d9e9a3.
Waiting for #11082 to be merged so CI passes |
Had to open a new PR due to some git problems -> #11101 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces a new pragma
custom_profiling_settings
which accepts a path to a JSON file. The file can be used to turn on or off profiling settings when the profiling mode is set to JSON (PRAGMA enable_profiling = 'json';
). If the pragma is not set, all profiling information will be included.Currently, the settings are as follows:
An example of a custom profiling settings JSON file:
The plan is to expand this feature to be able to include more settings in the future, as well as a new function in the C API that returns an object with the profiling information.