Skip to content
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

New generate_query_graph tool. #9212

Merged
merged 25 commits into from
Oct 19, 2023
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0a0af3a
basic workings are up. Just need to get the original timings in there
Tmonster Nov 29, 2022
b5266f0
made a yellow background. Up next, the timing table on the left
Tmonster Nov 29, 2022
15e07bf
adding table of timings
Tmonster Nov 30, 2022
9cd661e
table sorta works. Need to minify JS and re-style the squares
Tmonster Dec 1, 2022
3015c79
Reverted a commit that took out the graph generation from the python …
Tmonster Dec 2, 2022
9cd3eba
can create graphs from the package now. Still need to implement some …
Tmonster Dec 6, 2022
540691d
Merge remote-tracking branch 'origin' into new_query_graph_structure
Tmonster Dec 19, 2022
c18a17f
Merge branch 'main' into new_query_graph_structure
Tmonster Oct 2, 2023
902030f
renaming and moving around, but can no longer import duckdb
Tmonster Oct 2, 2023
5a6974a
remove duckdb_query_graph from python building
Tmonster Oct 2, 2023
d7a6178
script works again. pure css
Tmonster Oct 2, 2023
623f146
some changes to get nicer colors. might need to add more colors for o…
Tmonster Oct 2, 2023
fb6cd9b
new colors for more operators. delete the css
Tmonster Oct 2, 2023
fa773c3
format-fix
Tmonster Oct 2, 2023
48e1b13
new query graph tool
Tmonster Oct 3, 2023
7ccf53b
PR review comments. query_graph is exceutable module. use argparse, n…
Tmonster Oct 6, 2023
40255e9
remove hardcoded string, remove support for detailed profiling, remov…
Tmonster Oct 6, 2023
e84a17e
Merge remote-tracking branch 'upstream/main' into new_query_graph_str…
Tmonster Oct 9, 2023
1ac182c
PR comments still cleaning up old generat_query_graph.py script
Tmonster Oct 9, 2023
0707761
run make format fix a regenerate_python_stubs
Tmonster Oct 10, 2023
27ccba7
Merge remote-tracking branch 'upstream/main' into new_query_graph_str…
Tmonster Oct 10, 2023
e7cee6c
Revert "run make format fix a regenerate_python_stubs"
Tmonster Oct 10, 2023
03940a0
add stubs to query graph
Tmonster Oct 10, 2023
06f5601
remove query graph from stubs
Tmonster Oct 10, 2023
f5680dc
Merge branch 'main' into new_query_graph_structure
Tmonster Oct 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove duckdb_query_graph from python building
  • Loading branch information
Tmonster committed Oct 2, 2023
commit 5a6974a58f2a39cd3b2d5f35c0c9da321826993a
4 changes: 2 additions & 2 deletions tools/pythonpkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,11 +319,11 @@ def setup_data_files(data_files):
packages = [
lib_name,
'duckdb.typing',
'duckdb.duckdb_query_graph',
# 'duckdb.duckdb_query_graph',
'duckdb.functional',
'duckdb.value',
'duckdb-stubs',
'duckdb-stubs.duckdb_query_graph',
# 'duckdb-stubs.duckdb_query_graph',
'duckdb-stubs.functional',
'duckdb-stubs.typing',
'adbc_driver_duckdb',
Expand Down