relationalai 0.13.0.dev0__py3-none-any.whl → 0.13.2__py3-none-any.whl
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.
- frontend/debugger/dist/.gitignore +2 -0
- frontend/debugger/dist/assets/favicon-Dy0ZgA6N.png +0 -0
- frontend/debugger/dist/assets/index-Cssla-O7.js +208 -0
- frontend/debugger/dist/assets/index-DlHsYx1V.css +9 -0
- frontend/debugger/dist/index.html +17 -0
- relationalai/__init__.py +256 -1
- relationalai/clients/__init__.py +18 -0
- relationalai/clients/client.py +947 -0
- relationalai/clients/config.py +673 -0
- relationalai/clients/direct_access_client.py +118 -0
- relationalai/clients/exec_txn_poller.py +91 -0
- relationalai/clients/hash_util.py +31 -0
- relationalai/clients/local.py +586 -0
- relationalai/clients/profile_polling.py +73 -0
- relationalai/clients/resources/__init__.py +8 -0
- relationalai/clients/resources/azure/azure.py +502 -0
- relationalai/clients/resources/snowflake/__init__.py +20 -0
- relationalai/clients/resources/snowflake/cli_resources.py +98 -0
- relationalai/clients/resources/snowflake/direct_access_resources.py +734 -0
- relationalai/clients/resources/snowflake/engine_service.py +381 -0
- relationalai/clients/resources/snowflake/engine_state_handlers.py +315 -0
- relationalai/clients/resources/snowflake/error_handlers.py +240 -0
- relationalai/clients/resources/snowflake/export_procedure.py.jinja +249 -0
- relationalai/clients/resources/snowflake/resources_factory.py +99 -0
- relationalai/clients/resources/snowflake/snowflake.py +3185 -0
- relationalai/clients/resources/snowflake/use_index_poller.py +1019 -0
- relationalai/clients/resources/snowflake/use_index_resources.py +188 -0
- relationalai/clients/resources/snowflake/util.py +387 -0
- relationalai/clients/result_helpers.py +420 -0
- relationalai/clients/types.py +118 -0
- relationalai/clients/util.py +356 -0
- relationalai/debugging.py +389 -0
- relationalai/dsl.py +1749 -0
- relationalai/early_access/builder/__init__.py +30 -0
- relationalai/early_access/builder/builder/__init__.py +35 -0
- relationalai/early_access/builder/snowflake/__init__.py +12 -0
- relationalai/early_access/builder/std/__init__.py +25 -0
- relationalai/early_access/builder/std/decimals/__init__.py +12 -0
- relationalai/early_access/builder/std/integers/__init__.py +12 -0
- relationalai/early_access/builder/std/math/__init__.py +12 -0
- relationalai/early_access/builder/std/strings/__init__.py +14 -0
- relationalai/early_access/devtools/__init__.py +12 -0
- relationalai/early_access/devtools/benchmark_lqp/__init__.py +12 -0
- relationalai/early_access/devtools/extract_lqp/__init__.py +12 -0
- relationalai/early_access/dsl/adapters/orm/adapter_qb.py +427 -0
- relationalai/early_access/dsl/adapters/orm/parser.py +636 -0
- relationalai/early_access/dsl/adapters/owl/adapter.py +176 -0
- relationalai/early_access/dsl/adapters/owl/parser.py +160 -0
- relationalai/early_access/dsl/bindings/common.py +402 -0
- relationalai/early_access/dsl/bindings/csv.py +170 -0
- relationalai/early_access/dsl/bindings/legacy/binding_models.py +143 -0
- relationalai/early_access/dsl/bindings/snowflake.py +64 -0
- relationalai/early_access/dsl/codegen/binder.py +411 -0
- relationalai/early_access/dsl/codegen/common.py +79 -0
- relationalai/early_access/dsl/codegen/helpers.py +23 -0
- relationalai/early_access/dsl/codegen/relations.py +700 -0
- relationalai/early_access/dsl/codegen/weaver.py +417 -0
- relationalai/early_access/dsl/core/builders/__init__.py +47 -0
- relationalai/early_access/dsl/core/builders/logic.py +19 -0
- relationalai/early_access/dsl/core/builders/scalar_constraint.py +11 -0
- relationalai/early_access/dsl/core/constraints/predicate/atomic.py +455 -0
- relationalai/early_access/dsl/core/constraints/predicate/universal.py +73 -0
- relationalai/early_access/dsl/core/constraints/scalar.py +310 -0
- relationalai/early_access/dsl/core/context.py +13 -0
- relationalai/early_access/dsl/core/cset.py +132 -0
- relationalai/early_access/dsl/core/exprs/__init__.py +116 -0
- relationalai/early_access/dsl/core/exprs/relational.py +18 -0
- relationalai/early_access/dsl/core/exprs/scalar.py +412 -0
- relationalai/early_access/dsl/core/instances.py +44 -0
- relationalai/early_access/dsl/core/logic/__init__.py +193 -0
- relationalai/early_access/dsl/core/logic/aggregation.py +98 -0
- relationalai/early_access/dsl/core/logic/exists.py +223 -0
- relationalai/early_access/dsl/core/logic/helper.py +163 -0
- relationalai/early_access/dsl/core/namespaces.py +32 -0
- relationalai/early_access/dsl/core/relations.py +276 -0
- relationalai/early_access/dsl/core/rules.py +112 -0
- relationalai/early_access/dsl/core/std/__init__.py +45 -0
- relationalai/early_access/dsl/core/temporal/recall.py +6 -0
- relationalai/early_access/dsl/core/types/__init__.py +270 -0
- relationalai/early_access/dsl/core/types/concepts.py +128 -0
- relationalai/early_access/dsl/core/types/constrained/__init__.py +267 -0
- relationalai/early_access/dsl/core/types/constrained/nominal.py +143 -0
- relationalai/early_access/dsl/core/types/constrained/subtype.py +124 -0
- relationalai/early_access/dsl/core/types/standard.py +92 -0
- relationalai/early_access/dsl/core/types/unconstrained.py +50 -0
- relationalai/early_access/dsl/core/types/variables.py +203 -0
- relationalai/early_access/dsl/ir/compiler.py +318 -0
- relationalai/early_access/dsl/ir/executor.py +260 -0
- relationalai/early_access/dsl/ontologies/constraints.py +88 -0
- relationalai/early_access/dsl/ontologies/export.py +30 -0
- relationalai/early_access/dsl/ontologies/models.py +453 -0
- relationalai/early_access/dsl/ontologies/python_printer.py +303 -0
- relationalai/early_access/dsl/ontologies/readings.py +60 -0
- relationalai/early_access/dsl/ontologies/relationships.py +322 -0
- relationalai/early_access/dsl/ontologies/roles.py +87 -0
- relationalai/early_access/dsl/ontologies/subtyping.py +55 -0
- relationalai/early_access/dsl/orm/constraints.py +438 -0
- relationalai/early_access/dsl/orm/measures/dimensions.py +200 -0
- relationalai/early_access/dsl/orm/measures/initializer.py +16 -0
- relationalai/early_access/dsl/orm/measures/measure_rules.py +275 -0
- relationalai/early_access/dsl/orm/measures/measures.py +299 -0
- relationalai/early_access/dsl/orm/measures/role_exprs.py +268 -0
- relationalai/early_access/dsl/orm/models.py +256 -0
- relationalai/early_access/dsl/orm/object_oriented_printer.py +344 -0
- relationalai/early_access/dsl/orm/printer.py +469 -0
- relationalai/early_access/dsl/orm/reasoners.py +480 -0
- relationalai/early_access/dsl/orm/relations.py +19 -0
- relationalai/early_access/dsl/orm/relationships.py +251 -0
- relationalai/early_access/dsl/orm/types.py +42 -0
- relationalai/early_access/dsl/orm/utils.py +79 -0
- relationalai/early_access/dsl/orm/verb.py +204 -0
- relationalai/early_access/dsl/physical_metadata/tables.py +133 -0
- relationalai/early_access/dsl/relations.py +170 -0
- relationalai/early_access/dsl/rulesets.py +69 -0
- relationalai/early_access/dsl/schemas/__init__.py +450 -0
- relationalai/early_access/dsl/schemas/builder.py +48 -0
- relationalai/early_access/dsl/schemas/comp_names.py +51 -0
- relationalai/early_access/dsl/schemas/components.py +203 -0
- relationalai/early_access/dsl/schemas/contexts.py +156 -0
- relationalai/early_access/dsl/schemas/exprs.py +89 -0
- relationalai/early_access/dsl/schemas/fragments.py +464 -0
- relationalai/early_access/dsl/serialization.py +79 -0
- relationalai/early_access/dsl/serialize/exporter.py +163 -0
- relationalai/early_access/dsl/snow/api.py +105 -0
- relationalai/early_access/dsl/snow/common.py +76 -0
- relationalai/early_access/dsl/state_mgmt/__init__.py +129 -0
- relationalai/early_access/dsl/state_mgmt/state_charts.py +125 -0
- relationalai/early_access/dsl/state_mgmt/transitions.py +130 -0
- relationalai/early_access/dsl/types/__init__.py +40 -0
- relationalai/early_access/dsl/types/concepts.py +12 -0
- relationalai/early_access/dsl/types/entities.py +135 -0
- relationalai/early_access/dsl/types/values.py +17 -0
- relationalai/early_access/dsl/utils.py +102 -0
- relationalai/early_access/graphs/__init__.py +13 -0
- relationalai/early_access/lqp/__init__.py +12 -0
- relationalai/early_access/lqp/compiler/__init__.py +12 -0
- relationalai/early_access/lqp/constructors/__init__.py +18 -0
- relationalai/early_access/lqp/executor/__init__.py +12 -0
- relationalai/early_access/lqp/ir/__init__.py +12 -0
- relationalai/early_access/lqp/passes/__init__.py +12 -0
- relationalai/early_access/lqp/pragmas/__init__.py +12 -0
- relationalai/early_access/lqp/primitives/__init__.py +12 -0
- relationalai/early_access/lqp/types/__init__.py +12 -0
- relationalai/early_access/lqp/utils/__init__.py +12 -0
- relationalai/early_access/lqp/validators/__init__.py +12 -0
- relationalai/early_access/metamodel/__init__.py +58 -0
- relationalai/early_access/metamodel/builtins/__init__.py +12 -0
- relationalai/early_access/metamodel/compiler/__init__.py +12 -0
- relationalai/early_access/metamodel/dependency/__init__.py +12 -0
- relationalai/early_access/metamodel/factory/__init__.py +17 -0
- relationalai/early_access/metamodel/helpers/__init__.py +12 -0
- relationalai/early_access/metamodel/ir/__init__.py +14 -0
- relationalai/early_access/metamodel/rewrite/__init__.py +7 -0
- relationalai/early_access/metamodel/typer/__init__.py +3 -0
- relationalai/early_access/metamodel/typer/typer/__init__.py +12 -0
- relationalai/early_access/metamodel/types/__init__.py +15 -0
- relationalai/early_access/metamodel/util/__init__.py +15 -0
- relationalai/early_access/metamodel/visitor/__init__.py +12 -0
- relationalai/early_access/rel/__init__.py +12 -0
- relationalai/early_access/rel/executor/__init__.py +12 -0
- relationalai/early_access/rel/rel_utils/__init__.py +12 -0
- relationalai/early_access/rel/rewrite/__init__.py +7 -0
- relationalai/early_access/solvers/__init__.py +19 -0
- relationalai/early_access/sql/__init__.py +11 -0
- relationalai/early_access/sql/executor/__init__.py +3 -0
- relationalai/early_access/sql/rewrite/__init__.py +3 -0
- relationalai/early_access/tests/logging/__init__.py +12 -0
- relationalai/early_access/tests/test_snapshot_base/__init__.py +12 -0
- relationalai/early_access/tests/utils/__init__.py +12 -0
- relationalai/environments/__init__.py +35 -0
- relationalai/environments/base.py +381 -0
- relationalai/environments/colab.py +14 -0
- relationalai/environments/generic.py +71 -0
- relationalai/environments/ipython.py +68 -0
- relationalai/environments/jupyter.py +9 -0
- relationalai/environments/snowbook.py +169 -0
- relationalai/errors.py +2496 -0
- relationalai/experimental/SF.py +38 -0
- relationalai/experimental/inspect.py +47 -0
- relationalai/experimental/pathfinder/__init__.py +158 -0
- relationalai/experimental/pathfinder/api.py +160 -0
- relationalai/experimental/pathfinder/automaton.py +584 -0
- relationalai/experimental/pathfinder/bridge.py +226 -0
- relationalai/experimental/pathfinder/compiler.py +416 -0
- relationalai/experimental/pathfinder/datalog.py +214 -0
- relationalai/experimental/pathfinder/diagnostics.py +56 -0
- relationalai/experimental/pathfinder/filter.py +236 -0
- relationalai/experimental/pathfinder/glushkov.py +439 -0
- relationalai/experimental/pathfinder/options.py +265 -0
- relationalai/experimental/pathfinder/pathfinder-v0.7.0.rel +1951 -0
- relationalai/experimental/pathfinder/rpq.py +344 -0
- relationalai/experimental/pathfinder/transition.py +200 -0
- relationalai/experimental/pathfinder/utils.py +26 -0
- relationalai/experimental/paths/README.md +107 -0
- relationalai/experimental/paths/api.py +143 -0
- relationalai/experimental/paths/benchmarks/grid_graph.py +37 -0
- relationalai/experimental/paths/code_organization.md +2 -0
- relationalai/experimental/paths/examples/Movies.ipynb +16328 -0
- relationalai/experimental/paths/examples/basic_example.py +40 -0
- relationalai/experimental/paths/examples/minimal_engine_warmup.py +3 -0
- relationalai/experimental/paths/examples/movie_example.py +77 -0
- relationalai/experimental/paths/examples/movies_data/actedin.csv +193 -0
- relationalai/experimental/paths/examples/movies_data/directed.csv +45 -0
- relationalai/experimental/paths/examples/movies_data/follows.csv +7 -0
- relationalai/experimental/paths/examples/movies_data/movies.csv +39 -0
- relationalai/experimental/paths/examples/movies_data/person.csv +134 -0
- relationalai/experimental/paths/examples/movies_data/produced.csv +16 -0
- relationalai/experimental/paths/examples/movies_data/ratings.csv +10 -0
- relationalai/experimental/paths/examples/movies_data/wrote.csv +11 -0
- relationalai/experimental/paths/examples/paths_benchmark.py +115 -0
- relationalai/experimental/paths/examples/paths_example.py +116 -0
- relationalai/experimental/paths/examples/pattern_to_automaton.py +28 -0
- relationalai/experimental/paths/find_paths_via_automaton.py +85 -0
- relationalai/experimental/paths/graph.py +185 -0
- relationalai/experimental/paths/path_algorithms/find_paths.py +280 -0
- relationalai/experimental/paths/path_algorithms/one_sided_ball_repetition.py +26 -0
- relationalai/experimental/paths/path_algorithms/one_sided_ball_upto.py +111 -0
- relationalai/experimental/paths/path_algorithms/single.py +59 -0
- relationalai/experimental/paths/path_algorithms/two_sided_balls_repetition.py +39 -0
- relationalai/experimental/paths/path_algorithms/two_sided_balls_upto.py +103 -0
- relationalai/experimental/paths/path_algorithms/usp-old.py +130 -0
- relationalai/experimental/paths/path_algorithms/usp-tuple.py +183 -0
- relationalai/experimental/paths/path_algorithms/usp.py +150 -0
- relationalai/experimental/paths/product_graph.py +93 -0
- relationalai/experimental/paths/rpq/automaton.py +584 -0
- relationalai/experimental/paths/rpq/diagnostics.py +56 -0
- relationalai/experimental/paths/rpq/rpq.py +378 -0
- relationalai/experimental/paths/tests/tests_limit_sp_max_length.py +90 -0
- relationalai/experimental/paths/tests/tests_limit_sp_multiple.py +119 -0
- relationalai/experimental/paths/tests/tests_limit_sp_single.py +104 -0
- relationalai/experimental/paths/tests/tests_limit_walks_multiple.py +113 -0
- relationalai/experimental/paths/tests/tests_limit_walks_single.py +149 -0
- relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_multiple.py +70 -0
- relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_single.py +64 -0
- relationalai/experimental/paths/tests/tests_one_sided_ball_upto_multiple.py +115 -0
- relationalai/experimental/paths/tests/tests_one_sided_ball_upto_single.py +75 -0
- relationalai/experimental/paths/tests/tests_single_paths.py +152 -0
- relationalai/experimental/paths/tests/tests_single_walks.py +208 -0
- relationalai/experimental/paths/tests/tests_single_walks_undirected.py +297 -0
- relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_multiple.py +107 -0
- relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_single.py +76 -0
- relationalai/experimental/paths/tests/tests_two_sided_balls_upto_multiple.py +76 -0
- relationalai/experimental/paths/tests/tests_two_sided_balls_upto_single.py +110 -0
- relationalai/experimental/paths/tests/tests_usp_nsp_multiple.py +229 -0
- relationalai/experimental/paths/tests/tests_usp_nsp_single.py +108 -0
- relationalai/experimental/paths/tree_agg.py +168 -0
- relationalai/experimental/paths/utilities/iterators.py +27 -0
- relationalai/experimental/paths/utilities/prefix_sum.py +91 -0
- relationalai/experimental/solvers.py +1087 -0
- relationalai/loaders/csv.py +195 -0
- relationalai/loaders/loader.py +177 -0
- relationalai/loaders/types.py +23 -0
- relationalai/rel_emitter.py +373 -0
- relationalai/rel_utils.py +185 -0
- relationalai/semantics/__init__.py +22 -146
- relationalai/semantics/designs/query_builder/identify_by.md +106 -0
- relationalai/semantics/devtools/benchmark_lqp.py +535 -0
- relationalai/semantics/devtools/compilation_manager.py +294 -0
- relationalai/semantics/devtools/extract_lqp.py +110 -0
- relationalai/semantics/internal/internal.py +3785 -0
- relationalai/semantics/internal/snowflake.py +325 -0
- relationalai/semantics/lqp/README.md +34 -0
- relationalai/semantics/lqp/builtins.py +16 -0
- relationalai/semantics/lqp/compiler.py +22 -0
- relationalai/semantics/lqp/constructors.py +68 -0
- relationalai/semantics/lqp/executor.py +469 -0
- relationalai/semantics/lqp/intrinsics.py +24 -0
- relationalai/semantics/lqp/model2lqp.py +877 -0
- relationalai/semantics/lqp/passes.py +680 -0
- relationalai/semantics/lqp/primitives.py +252 -0
- relationalai/semantics/lqp/result_helpers.py +202 -0
- relationalai/semantics/lqp/rewrite/annotate_constraints.py +57 -0
- relationalai/semantics/lqp/rewrite/cdc.py +216 -0
- relationalai/semantics/lqp/rewrite/extract_common.py +338 -0
- relationalai/semantics/lqp/rewrite/extract_keys.py +512 -0
- relationalai/semantics/lqp/rewrite/function_annotations.py +114 -0
- relationalai/semantics/lqp/rewrite/functional_dependencies.py +314 -0
- relationalai/semantics/lqp/rewrite/quantify_vars.py +296 -0
- relationalai/semantics/lqp/rewrite/splinter.py +76 -0
- relationalai/semantics/lqp/types.py +101 -0
- relationalai/semantics/lqp/utils.py +160 -0
- relationalai/semantics/lqp/validators.py +57 -0
- relationalai/semantics/metamodel/__init__.py +40 -6
- relationalai/semantics/metamodel/builtins.py +771 -205
- relationalai/semantics/metamodel/compiler.py +133 -0
- relationalai/semantics/metamodel/dependency.py +862 -0
- relationalai/semantics/metamodel/executor.py +61 -0
- relationalai/semantics/metamodel/factory.py +287 -0
- relationalai/semantics/metamodel/helpers.py +361 -0
- relationalai/semantics/metamodel/rewrite/discharge_constraints.py +39 -0
- relationalai/semantics/metamodel/rewrite/dnf_union_splitter.py +210 -0
- relationalai/semantics/metamodel/rewrite/extract_nested_logicals.py +78 -0
- relationalai/semantics/metamodel/rewrite/flatten.py +554 -0
- relationalai/semantics/metamodel/rewrite/format_outputs.py +165 -0
- relationalai/semantics/metamodel/typer/checker.py +353 -0
- relationalai/semantics/metamodel/typer/typer.py +1399 -0
- relationalai/semantics/metamodel/util.py +506 -0
- relationalai/semantics/reasoners/__init__.py +10 -0
- relationalai/semantics/reasoners/graph/README.md +620 -0
- relationalai/semantics/reasoners/graph/__init__.py +37 -0
- relationalai/semantics/reasoners/graph/core.py +9019 -0
- relationalai/semantics/reasoners/graph/design/beyond_demand_transform.md +797 -0
- relationalai/semantics/reasoners/graph/tests/README.md +21 -0
- relationalai/semantics/reasoners/optimization/__init__.py +68 -0
- relationalai/semantics/reasoners/optimization/common.py +88 -0
- relationalai/semantics/reasoners/optimization/solvers_dev.py +568 -0
- relationalai/semantics/reasoners/optimization/solvers_pb.py +1414 -0
- relationalai/semantics/rel/builtins.py +40 -0
- relationalai/semantics/rel/compiler.py +989 -0
- relationalai/semantics/rel/executor.py +362 -0
- relationalai/semantics/rel/rel.py +482 -0
- relationalai/semantics/rel/rel_utils.py +276 -0
- relationalai/semantics/snowflake/__init__.py +3 -0
- relationalai/semantics/sql/compiler.py +2503 -0
- relationalai/semantics/sql/executor/duck_db.py +52 -0
- relationalai/semantics/sql/executor/result_helpers.py +64 -0
- relationalai/semantics/sql/executor/snowflake.py +149 -0
- relationalai/semantics/sql/rewrite/denormalize.py +222 -0
- relationalai/semantics/sql/rewrite/double_negation.py +49 -0
- relationalai/semantics/sql/rewrite/recursive_union.py +127 -0
- relationalai/semantics/sql/rewrite/sort_output_query.py +246 -0
- relationalai/semantics/sql/sql.py +504 -0
- relationalai/semantics/std/__init__.py +40 -60
- relationalai/semantics/std/constraints.py +43 -37
- relationalai/semantics/std/datetime.py +135 -246
- relationalai/semantics/std/decimals.py +52 -45
- relationalai/semantics/std/floats.py +5 -13
- relationalai/semantics/std/integers.py +11 -26
- relationalai/semantics/std/math.py +112 -183
- relationalai/semantics/std/pragmas.py +11 -0
- relationalai/semantics/std/re.py +62 -80
- relationalai/semantics/std/std.py +14 -0
- relationalai/semantics/std/strings.py +60 -117
- relationalai/semantics/tests/test_snapshot_abstract.py +143 -0
- relationalai/semantics/tests/test_snapshot_base.py +9 -0
- relationalai/semantics/tests/utils.py +46 -0
- relationalai/std/__init__.py +70 -0
- relationalai/tools/cli.py +2089 -0
- relationalai/tools/cli_controls.py +1826 -0
- relationalai/tools/cli_helpers.py +802 -0
- relationalai/tools/debugger.py +183 -289
- relationalai/tools/debugger_client.py +109 -0
- relationalai/tools/debugger_server.py +302 -0
- relationalai/tools/dev.py +685 -0
- relationalai/tools/notes +7 -0
- relationalai/tools/qb_debugger.py +425 -0
- relationalai/util/clean_up_databases.py +95 -0
- relationalai/util/format.py +106 -48
- relationalai/util/list_databases.py +9 -0
- relationalai/util/otel_configuration.py +26 -0
- relationalai/util/otel_handler.py +484 -0
- relationalai/util/snowflake_handler.py +88 -0
- relationalai/util/span_format_test.py +43 -0
- relationalai/util/span_tracker.py +207 -0
- relationalai/util/spans_file_handler.py +72 -0
- relationalai/util/tracing_handler.py +34 -0
- relationalai-0.13.2.dist-info/METADATA +74 -0
- relationalai-0.13.2.dist-info/RECORD +460 -0
- relationalai-0.13.2.dist-info/WHEEL +4 -0
- relationalai-0.13.2.dist-info/entry_points.txt +3 -0
- relationalai-0.13.2.dist-info/licenses/LICENSE +202 -0
- relationalai_test_util/__init__.py +4 -0
- relationalai_test_util/fixtures.py +233 -0
- relationalai_test_util/snapshot.py +252 -0
- relationalai_test_util/traceback.py +118 -0
- relationalai/config/__init__.py +0 -56
- relationalai/config/config.py +0 -289
- relationalai/config/config_fields.py +0 -86
- relationalai/config/connections/__init__.py +0 -46
- relationalai/config/connections/base.py +0 -23
- relationalai/config/connections/duckdb.py +0 -29
- relationalai/config/connections/snowflake.py +0 -243
- relationalai/config/external/__init__.py +0 -17
- relationalai/config/external/dbt_converter.py +0 -101
- relationalai/config/external/dbt_models.py +0 -93
- relationalai/config/external/snowflake_converter.py +0 -41
- relationalai/config/external/snowflake_models.py +0 -85
- relationalai/config/external/utils.py +0 -19
- relationalai/semantics/backends/lqp/annotations.py +0 -11
- relationalai/semantics/backends/sql/sql_compiler.py +0 -327
- relationalai/semantics/frontend/base.py +0 -1707
- relationalai/semantics/frontend/core.py +0 -179
- relationalai/semantics/frontend/front_compiler.py +0 -1313
- relationalai/semantics/frontend/pprint.py +0 -408
- relationalai/semantics/metamodel/metamodel.py +0 -437
- relationalai/semantics/metamodel/metamodel_analyzer.py +0 -519
- relationalai/semantics/metamodel/metamodel_compiler.py +0 -0
- relationalai/semantics/metamodel/pprint.py +0 -412
- relationalai/semantics/metamodel/rewriter.py +0 -266
- relationalai/semantics/metamodel/typer.py +0 -1378
- relationalai/semantics/std/aggregates.py +0 -149
- relationalai/semantics/std/common.py +0 -44
- relationalai/semantics/std/numbers.py +0 -86
- relationalai/shims/executor.py +0 -147
- relationalai/shims/helpers.py +0 -126
- relationalai/shims/hoister.py +0 -221
- relationalai/shims/mm2v0.py +0 -1290
- relationalai/tools/cli/__init__.py +0 -6
- relationalai/tools/cli/cli.py +0 -90
- relationalai/tools/cli/components/__init__.py +0 -5
- relationalai/tools/cli/components/progress_reader.py +0 -1524
- relationalai/tools/cli/components/utils.py +0 -58
- relationalai/tools/cli/config_template.py +0 -45
- relationalai/tools/cli/dev.py +0 -19
- relationalai/tools/typer_debugger.py +0 -93
- relationalai/util/dataclasses.py +0 -43
- relationalai/util/docutils.py +0 -40
- relationalai/util/error.py +0 -199
- relationalai/util/naming.py +0 -145
- relationalai/util/python.py +0 -35
- relationalai/util/runtime.py +0 -156
- relationalai/util/schema.py +0 -197
- relationalai/util/source.py +0 -185
- relationalai/util/structures.py +0 -163
- relationalai/util/tracing.py +0 -261
- relationalai-0.13.0.dev0.dist-info/METADATA +0 -46
- relationalai-0.13.0.dev0.dist-info/RECORD +0 -488
- relationalai-0.13.0.dev0.dist-info/WHEEL +0 -5
- relationalai-0.13.0.dev0.dist-info/entry_points.txt +0 -3
- relationalai-0.13.0.dev0.dist-info/top_level.txt +0 -2
- v0/relationalai/__init__.py +0 -216
- v0/relationalai/clients/__init__.py +0 -5
- v0/relationalai/clients/azure.py +0 -477
- v0/relationalai/clients/client.py +0 -912
- v0/relationalai/clients/config.py +0 -673
- v0/relationalai/clients/direct_access_client.py +0 -118
- v0/relationalai/clients/hash_util.py +0 -31
- v0/relationalai/clients/local.py +0 -571
- v0/relationalai/clients/profile_polling.py +0 -73
- v0/relationalai/clients/result_helpers.py +0 -420
- v0/relationalai/clients/snowflake.py +0 -3869
- v0/relationalai/clients/types.py +0 -113
- v0/relationalai/clients/use_index_poller.py +0 -980
- v0/relationalai/clients/util.py +0 -356
- v0/relationalai/debugging.py +0 -389
- v0/relationalai/dsl.py +0 -1749
- v0/relationalai/early_access/builder/__init__.py +0 -30
- v0/relationalai/early_access/builder/builder/__init__.py +0 -35
- v0/relationalai/early_access/builder/snowflake/__init__.py +0 -12
- v0/relationalai/early_access/builder/std/__init__.py +0 -25
- v0/relationalai/early_access/builder/std/decimals/__init__.py +0 -12
- v0/relationalai/early_access/builder/std/integers/__init__.py +0 -12
- v0/relationalai/early_access/builder/std/math/__init__.py +0 -12
- v0/relationalai/early_access/builder/std/strings/__init__.py +0 -14
- v0/relationalai/early_access/devtools/__init__.py +0 -12
- v0/relationalai/early_access/devtools/benchmark_lqp/__init__.py +0 -12
- v0/relationalai/early_access/devtools/extract_lqp/__init__.py +0 -12
- v0/relationalai/early_access/dsl/adapters/orm/adapter_qb.py +0 -427
- v0/relationalai/early_access/dsl/adapters/orm/parser.py +0 -636
- v0/relationalai/early_access/dsl/adapters/owl/adapter.py +0 -176
- v0/relationalai/early_access/dsl/adapters/owl/parser.py +0 -160
- v0/relationalai/early_access/dsl/bindings/common.py +0 -402
- v0/relationalai/early_access/dsl/bindings/csv.py +0 -170
- v0/relationalai/early_access/dsl/bindings/legacy/binding_models.py +0 -143
- v0/relationalai/early_access/dsl/bindings/snowflake.py +0 -64
- v0/relationalai/early_access/dsl/codegen/binder.py +0 -411
- v0/relationalai/early_access/dsl/codegen/common.py +0 -79
- v0/relationalai/early_access/dsl/codegen/helpers.py +0 -23
- v0/relationalai/early_access/dsl/codegen/relations.py +0 -700
- v0/relationalai/early_access/dsl/codegen/weaver.py +0 -417
- v0/relationalai/early_access/dsl/core/builders/__init__.py +0 -47
- v0/relationalai/early_access/dsl/core/builders/logic.py +0 -19
- v0/relationalai/early_access/dsl/core/builders/scalar_constraint.py +0 -11
- v0/relationalai/early_access/dsl/core/constraints/predicate/atomic.py +0 -455
- v0/relationalai/early_access/dsl/core/constraints/predicate/universal.py +0 -73
- v0/relationalai/early_access/dsl/core/constraints/scalar.py +0 -310
- v0/relationalai/early_access/dsl/core/context.py +0 -13
- v0/relationalai/early_access/dsl/core/cset.py +0 -132
- v0/relationalai/early_access/dsl/core/exprs/__init__.py +0 -116
- v0/relationalai/early_access/dsl/core/exprs/relational.py +0 -18
- v0/relationalai/early_access/dsl/core/exprs/scalar.py +0 -412
- v0/relationalai/early_access/dsl/core/instances.py +0 -44
- v0/relationalai/early_access/dsl/core/logic/__init__.py +0 -193
- v0/relationalai/early_access/dsl/core/logic/aggregation.py +0 -98
- v0/relationalai/early_access/dsl/core/logic/exists.py +0 -223
- v0/relationalai/early_access/dsl/core/logic/helper.py +0 -163
- v0/relationalai/early_access/dsl/core/namespaces.py +0 -32
- v0/relationalai/early_access/dsl/core/relations.py +0 -276
- v0/relationalai/early_access/dsl/core/rules.py +0 -112
- v0/relationalai/early_access/dsl/core/std/__init__.py +0 -45
- v0/relationalai/early_access/dsl/core/temporal/recall.py +0 -6
- v0/relationalai/early_access/dsl/core/types/__init__.py +0 -270
- v0/relationalai/early_access/dsl/core/types/concepts.py +0 -128
- v0/relationalai/early_access/dsl/core/types/constrained/__init__.py +0 -267
- v0/relationalai/early_access/dsl/core/types/constrained/nominal.py +0 -143
- v0/relationalai/early_access/dsl/core/types/constrained/subtype.py +0 -124
- v0/relationalai/early_access/dsl/core/types/standard.py +0 -92
- v0/relationalai/early_access/dsl/core/types/unconstrained.py +0 -50
- v0/relationalai/early_access/dsl/core/types/variables.py +0 -203
- v0/relationalai/early_access/dsl/ir/compiler.py +0 -318
- v0/relationalai/early_access/dsl/ir/executor.py +0 -260
- v0/relationalai/early_access/dsl/ontologies/constraints.py +0 -88
- v0/relationalai/early_access/dsl/ontologies/export.py +0 -30
- v0/relationalai/early_access/dsl/ontologies/models.py +0 -453
- v0/relationalai/early_access/dsl/ontologies/python_printer.py +0 -303
- v0/relationalai/early_access/dsl/ontologies/readings.py +0 -60
- v0/relationalai/early_access/dsl/ontologies/relationships.py +0 -322
- v0/relationalai/early_access/dsl/ontologies/roles.py +0 -87
- v0/relationalai/early_access/dsl/ontologies/subtyping.py +0 -55
- v0/relationalai/early_access/dsl/orm/constraints.py +0 -438
- v0/relationalai/early_access/dsl/orm/measures/dimensions.py +0 -200
- v0/relationalai/early_access/dsl/orm/measures/initializer.py +0 -16
- v0/relationalai/early_access/dsl/orm/measures/measure_rules.py +0 -275
- v0/relationalai/early_access/dsl/orm/measures/measures.py +0 -299
- v0/relationalai/early_access/dsl/orm/measures/role_exprs.py +0 -268
- v0/relationalai/early_access/dsl/orm/models.py +0 -256
- v0/relationalai/early_access/dsl/orm/object_oriented_printer.py +0 -344
- v0/relationalai/early_access/dsl/orm/printer.py +0 -469
- v0/relationalai/early_access/dsl/orm/reasoners.py +0 -480
- v0/relationalai/early_access/dsl/orm/relations.py +0 -19
- v0/relationalai/early_access/dsl/orm/relationships.py +0 -251
- v0/relationalai/early_access/dsl/orm/types.py +0 -42
- v0/relationalai/early_access/dsl/orm/utils.py +0 -79
- v0/relationalai/early_access/dsl/orm/verb.py +0 -204
- v0/relationalai/early_access/dsl/physical_metadata/tables.py +0 -133
- v0/relationalai/early_access/dsl/relations.py +0 -170
- v0/relationalai/early_access/dsl/rulesets.py +0 -69
- v0/relationalai/early_access/dsl/schemas/__init__.py +0 -450
- v0/relationalai/early_access/dsl/schemas/builder.py +0 -48
- v0/relationalai/early_access/dsl/schemas/comp_names.py +0 -51
- v0/relationalai/early_access/dsl/schemas/components.py +0 -203
- v0/relationalai/early_access/dsl/schemas/contexts.py +0 -156
- v0/relationalai/early_access/dsl/schemas/exprs.py +0 -89
- v0/relationalai/early_access/dsl/schemas/fragments.py +0 -464
- v0/relationalai/early_access/dsl/serialization.py +0 -79
- v0/relationalai/early_access/dsl/serialize/exporter.py +0 -163
- v0/relationalai/early_access/dsl/snow/api.py +0 -104
- v0/relationalai/early_access/dsl/snow/common.py +0 -76
- v0/relationalai/early_access/dsl/state_mgmt/__init__.py +0 -129
- v0/relationalai/early_access/dsl/state_mgmt/state_charts.py +0 -125
- v0/relationalai/early_access/dsl/state_mgmt/transitions.py +0 -130
- v0/relationalai/early_access/dsl/types/__init__.py +0 -40
- v0/relationalai/early_access/dsl/types/concepts.py +0 -12
- v0/relationalai/early_access/dsl/types/entities.py +0 -135
- v0/relationalai/early_access/dsl/types/values.py +0 -17
- v0/relationalai/early_access/dsl/utils.py +0 -102
- v0/relationalai/early_access/graphs/__init__.py +0 -13
- v0/relationalai/early_access/lqp/__init__.py +0 -12
- v0/relationalai/early_access/lqp/compiler/__init__.py +0 -12
- v0/relationalai/early_access/lqp/constructors/__init__.py +0 -18
- v0/relationalai/early_access/lqp/executor/__init__.py +0 -12
- v0/relationalai/early_access/lqp/ir/__init__.py +0 -12
- v0/relationalai/early_access/lqp/passes/__init__.py +0 -12
- v0/relationalai/early_access/lqp/pragmas/__init__.py +0 -12
- v0/relationalai/early_access/lqp/primitives/__init__.py +0 -12
- v0/relationalai/early_access/lqp/types/__init__.py +0 -12
- v0/relationalai/early_access/lqp/utils/__init__.py +0 -12
- v0/relationalai/early_access/lqp/validators/__init__.py +0 -12
- v0/relationalai/early_access/metamodel/__init__.py +0 -58
- v0/relationalai/early_access/metamodel/builtins/__init__.py +0 -12
- v0/relationalai/early_access/metamodel/compiler/__init__.py +0 -12
- v0/relationalai/early_access/metamodel/dependency/__init__.py +0 -12
- v0/relationalai/early_access/metamodel/factory/__init__.py +0 -17
- v0/relationalai/early_access/metamodel/helpers/__init__.py +0 -12
- v0/relationalai/early_access/metamodel/ir/__init__.py +0 -14
- v0/relationalai/early_access/metamodel/rewrite/__init__.py +0 -7
- v0/relationalai/early_access/metamodel/typer/__init__.py +0 -3
- v0/relationalai/early_access/metamodel/typer/typer/__init__.py +0 -12
- v0/relationalai/early_access/metamodel/types/__init__.py +0 -15
- v0/relationalai/early_access/metamodel/util/__init__.py +0 -15
- v0/relationalai/early_access/metamodel/visitor/__init__.py +0 -12
- v0/relationalai/early_access/rel/__init__.py +0 -12
- v0/relationalai/early_access/rel/executor/__init__.py +0 -12
- v0/relationalai/early_access/rel/rel_utils/__init__.py +0 -12
- v0/relationalai/early_access/rel/rewrite/__init__.py +0 -7
- v0/relationalai/early_access/solvers/__init__.py +0 -19
- v0/relationalai/early_access/sql/__init__.py +0 -11
- v0/relationalai/early_access/sql/executor/__init__.py +0 -3
- v0/relationalai/early_access/sql/rewrite/__init__.py +0 -3
- v0/relationalai/early_access/tests/logging/__init__.py +0 -12
- v0/relationalai/early_access/tests/test_snapshot_base/__init__.py +0 -12
- v0/relationalai/early_access/tests/utils/__init__.py +0 -12
- v0/relationalai/environments/__init__.py +0 -35
- v0/relationalai/environments/base.py +0 -381
- v0/relationalai/environments/colab.py +0 -14
- v0/relationalai/environments/generic.py +0 -71
- v0/relationalai/environments/ipython.py +0 -68
- v0/relationalai/environments/jupyter.py +0 -9
- v0/relationalai/environments/snowbook.py +0 -169
- v0/relationalai/errors.py +0 -2455
- v0/relationalai/experimental/SF.py +0 -38
- v0/relationalai/experimental/inspect.py +0 -47
- v0/relationalai/experimental/pathfinder/__init__.py +0 -158
- v0/relationalai/experimental/pathfinder/api.py +0 -160
- v0/relationalai/experimental/pathfinder/automaton.py +0 -584
- v0/relationalai/experimental/pathfinder/bridge.py +0 -226
- v0/relationalai/experimental/pathfinder/compiler.py +0 -416
- v0/relationalai/experimental/pathfinder/datalog.py +0 -214
- v0/relationalai/experimental/pathfinder/diagnostics.py +0 -56
- v0/relationalai/experimental/pathfinder/filter.py +0 -236
- v0/relationalai/experimental/pathfinder/glushkov.py +0 -439
- v0/relationalai/experimental/pathfinder/options.py +0 -265
- v0/relationalai/experimental/pathfinder/rpq.py +0 -344
- v0/relationalai/experimental/pathfinder/transition.py +0 -200
- v0/relationalai/experimental/pathfinder/utils.py +0 -26
- v0/relationalai/experimental/paths/api.py +0 -143
- v0/relationalai/experimental/paths/benchmarks/grid_graph.py +0 -37
- v0/relationalai/experimental/paths/examples/basic_example.py +0 -40
- v0/relationalai/experimental/paths/examples/minimal_engine_warmup.py +0 -3
- v0/relationalai/experimental/paths/examples/movie_example.py +0 -77
- v0/relationalai/experimental/paths/examples/paths_benchmark.py +0 -115
- v0/relationalai/experimental/paths/examples/paths_example.py +0 -116
- v0/relationalai/experimental/paths/examples/pattern_to_automaton.py +0 -28
- v0/relationalai/experimental/paths/find_paths_via_automaton.py +0 -85
- v0/relationalai/experimental/paths/graph.py +0 -185
- v0/relationalai/experimental/paths/path_algorithms/find_paths.py +0 -280
- v0/relationalai/experimental/paths/path_algorithms/one_sided_ball_repetition.py +0 -26
- v0/relationalai/experimental/paths/path_algorithms/one_sided_ball_upto.py +0 -111
- v0/relationalai/experimental/paths/path_algorithms/single.py +0 -59
- v0/relationalai/experimental/paths/path_algorithms/two_sided_balls_repetition.py +0 -39
- v0/relationalai/experimental/paths/path_algorithms/two_sided_balls_upto.py +0 -103
- v0/relationalai/experimental/paths/path_algorithms/usp-old.py +0 -130
- v0/relationalai/experimental/paths/path_algorithms/usp-tuple.py +0 -183
- v0/relationalai/experimental/paths/path_algorithms/usp.py +0 -150
- v0/relationalai/experimental/paths/product_graph.py +0 -93
- v0/relationalai/experimental/paths/rpq/automaton.py +0 -584
- v0/relationalai/experimental/paths/rpq/diagnostics.py +0 -56
- v0/relationalai/experimental/paths/rpq/rpq.py +0 -378
- v0/relationalai/experimental/paths/tests/tests_limit_sp_max_length.py +0 -90
- v0/relationalai/experimental/paths/tests/tests_limit_sp_multiple.py +0 -119
- v0/relationalai/experimental/paths/tests/tests_limit_sp_single.py +0 -104
- v0/relationalai/experimental/paths/tests/tests_limit_walks_multiple.py +0 -113
- v0/relationalai/experimental/paths/tests/tests_limit_walks_single.py +0 -149
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_multiple.py +0 -70
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_single.py +0 -64
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_upto_multiple.py +0 -115
- v0/relationalai/experimental/paths/tests/tests_one_sided_ball_upto_single.py +0 -75
- v0/relationalai/experimental/paths/tests/tests_single_paths.py +0 -152
- v0/relationalai/experimental/paths/tests/tests_single_walks.py +0 -208
- v0/relationalai/experimental/paths/tests/tests_single_walks_undirected.py +0 -297
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_multiple.py +0 -107
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_single.py +0 -76
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_upto_multiple.py +0 -76
- v0/relationalai/experimental/paths/tests/tests_two_sided_balls_upto_single.py +0 -110
- v0/relationalai/experimental/paths/tests/tests_usp_nsp_multiple.py +0 -229
- v0/relationalai/experimental/paths/tests/tests_usp_nsp_single.py +0 -108
- v0/relationalai/experimental/paths/tree_agg.py +0 -168
- v0/relationalai/experimental/paths/utilities/iterators.py +0 -27
- v0/relationalai/experimental/paths/utilities/prefix_sum.py +0 -91
- v0/relationalai/experimental/solvers.py +0 -1087
- v0/relationalai/loaders/csv.py +0 -195
- v0/relationalai/loaders/loader.py +0 -177
- v0/relationalai/loaders/types.py +0 -23
- v0/relationalai/rel_emitter.py +0 -373
- v0/relationalai/rel_utils.py +0 -185
- v0/relationalai/semantics/__init__.py +0 -29
- v0/relationalai/semantics/devtools/benchmark_lqp.py +0 -536
- v0/relationalai/semantics/devtools/compilation_manager.py +0 -294
- v0/relationalai/semantics/devtools/extract_lqp.py +0 -110
- v0/relationalai/semantics/internal/internal.py +0 -3785
- v0/relationalai/semantics/internal/snowflake.py +0 -324
- v0/relationalai/semantics/lqp/builtins.py +0 -16
- v0/relationalai/semantics/lqp/compiler.py +0 -22
- v0/relationalai/semantics/lqp/constructors.py +0 -68
- v0/relationalai/semantics/lqp/executor.py +0 -469
- v0/relationalai/semantics/lqp/intrinsics.py +0 -24
- v0/relationalai/semantics/lqp/model2lqp.py +0 -839
- v0/relationalai/semantics/lqp/passes.py +0 -680
- v0/relationalai/semantics/lqp/primitives.py +0 -252
- v0/relationalai/semantics/lqp/result_helpers.py +0 -202
- v0/relationalai/semantics/lqp/rewrite/annotate_constraints.py +0 -57
- v0/relationalai/semantics/lqp/rewrite/cdc.py +0 -216
- v0/relationalai/semantics/lqp/rewrite/extract_common.py +0 -338
- v0/relationalai/semantics/lqp/rewrite/extract_keys.py +0 -449
- v0/relationalai/semantics/lqp/rewrite/function_annotations.py +0 -114
- v0/relationalai/semantics/lqp/rewrite/functional_dependencies.py +0 -314
- v0/relationalai/semantics/lqp/rewrite/quantify_vars.py +0 -296
- v0/relationalai/semantics/lqp/rewrite/splinter.py +0 -76
- v0/relationalai/semantics/lqp/types.py +0 -101
- v0/relationalai/semantics/lqp/utils.py +0 -160
- v0/relationalai/semantics/lqp/validators.py +0 -57
- v0/relationalai/semantics/metamodel/__init__.py +0 -40
- v0/relationalai/semantics/metamodel/builtins.py +0 -774
- v0/relationalai/semantics/metamodel/compiler.py +0 -133
- v0/relationalai/semantics/metamodel/dependency.py +0 -862
- v0/relationalai/semantics/metamodel/executor.py +0 -61
- v0/relationalai/semantics/metamodel/factory.py +0 -287
- v0/relationalai/semantics/metamodel/helpers.py +0 -361
- v0/relationalai/semantics/metamodel/rewrite/discharge_constraints.py +0 -39
- v0/relationalai/semantics/metamodel/rewrite/dnf_union_splitter.py +0 -210
- v0/relationalai/semantics/metamodel/rewrite/extract_nested_logicals.py +0 -78
- v0/relationalai/semantics/metamodel/rewrite/flatten.py +0 -549
- v0/relationalai/semantics/metamodel/rewrite/format_outputs.py +0 -165
- v0/relationalai/semantics/metamodel/typer/checker.py +0 -353
- v0/relationalai/semantics/metamodel/typer/typer.py +0 -1395
- v0/relationalai/semantics/metamodel/util.py +0 -505
- v0/relationalai/semantics/reasoners/__init__.py +0 -10
- v0/relationalai/semantics/reasoners/graph/__init__.py +0 -37
- v0/relationalai/semantics/reasoners/graph/core.py +0 -9020
- v0/relationalai/semantics/reasoners/optimization/__init__.py +0 -68
- v0/relationalai/semantics/reasoners/optimization/common.py +0 -88
- v0/relationalai/semantics/reasoners/optimization/solvers_dev.py +0 -568
- v0/relationalai/semantics/reasoners/optimization/solvers_pb.py +0 -1163
- v0/relationalai/semantics/rel/builtins.py +0 -40
- v0/relationalai/semantics/rel/compiler.py +0 -989
- v0/relationalai/semantics/rel/executor.py +0 -359
- v0/relationalai/semantics/rel/rel.py +0 -482
- v0/relationalai/semantics/rel/rel_utils.py +0 -276
- v0/relationalai/semantics/snowflake/__init__.py +0 -3
- v0/relationalai/semantics/sql/compiler.py +0 -2503
- v0/relationalai/semantics/sql/executor/duck_db.py +0 -52
- v0/relationalai/semantics/sql/executor/result_helpers.py +0 -64
- v0/relationalai/semantics/sql/executor/snowflake.py +0 -145
- v0/relationalai/semantics/sql/rewrite/denormalize.py +0 -222
- v0/relationalai/semantics/sql/rewrite/double_negation.py +0 -49
- v0/relationalai/semantics/sql/rewrite/recursive_union.py +0 -127
- v0/relationalai/semantics/sql/rewrite/sort_output_query.py +0 -246
- v0/relationalai/semantics/sql/sql.py +0 -504
- v0/relationalai/semantics/std/__init__.py +0 -54
- v0/relationalai/semantics/std/constraints.py +0 -43
- v0/relationalai/semantics/std/datetime.py +0 -363
- v0/relationalai/semantics/std/decimals.py +0 -62
- v0/relationalai/semantics/std/floats.py +0 -7
- v0/relationalai/semantics/std/integers.py +0 -22
- v0/relationalai/semantics/std/math.py +0 -141
- v0/relationalai/semantics/std/pragmas.py +0 -11
- v0/relationalai/semantics/std/re.py +0 -83
- v0/relationalai/semantics/std/std.py +0 -14
- v0/relationalai/semantics/std/strings.py +0 -63
- v0/relationalai/semantics/tests/__init__.py +0 -0
- v0/relationalai/semantics/tests/test_snapshot_abstract.py +0 -143
- v0/relationalai/semantics/tests/test_snapshot_base.py +0 -9
- v0/relationalai/semantics/tests/utils.py +0 -46
- v0/relationalai/std/__init__.py +0 -70
- v0/relationalai/tools/__init__.py +0 -0
- v0/relationalai/tools/cli.py +0 -1940
- v0/relationalai/tools/cli_controls.py +0 -1826
- v0/relationalai/tools/cli_helpers.py +0 -390
- v0/relationalai/tools/debugger.py +0 -183
- v0/relationalai/tools/debugger_client.py +0 -109
- v0/relationalai/tools/debugger_server.py +0 -302
- v0/relationalai/tools/dev.py +0 -685
- v0/relationalai/tools/qb_debugger.py +0 -425
- v0/relationalai/util/clean_up_databases.py +0 -95
- v0/relationalai/util/format.py +0 -123
- v0/relationalai/util/list_databases.py +0 -9
- v0/relationalai/util/otel_configuration.py +0 -25
- v0/relationalai/util/otel_handler.py +0 -484
- v0/relationalai/util/snowflake_handler.py +0 -88
- v0/relationalai/util/span_format_test.py +0 -43
- v0/relationalai/util/span_tracker.py +0 -207
- v0/relationalai/util/spans_file_handler.py +0 -72
- v0/relationalai/util/tracing_handler.py +0 -34
- /relationalai/{semantics/frontend → analysis}/__init__.py +0 -0
- {v0/relationalai → relationalai}/analysis/mechanistic.py +0 -0
- {v0/relationalai → relationalai}/analysis/whynot.py +0 -0
- /relationalai/{shims → auth}/__init__.py +0 -0
- {v0/relationalai → relationalai}/auth/jwt_generator.py +0 -0
- {v0/relationalai → relationalai}/auth/oauth_callback_server.py +0 -0
- {v0/relationalai → relationalai}/auth/token_handler.py +0 -0
- {v0/relationalai → relationalai}/auth/util.py +0 -0
- {v0/relationalai/clients → relationalai/clients/resources/snowflake}/cache_store.py +0 -0
- {v0/relationalai → relationalai}/compiler.py +0 -0
- {v0/relationalai → relationalai}/dependencies.py +0 -0
- {v0/relationalai → relationalai}/docutils.py +0 -0
- {v0/relationalai/analysis → relationalai/early_access}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/__init__.py +0 -0
- {v0/relationalai/auth → relationalai/early_access/dsl/adapters}/__init__.py +0 -0
- {v0/relationalai/early_access → relationalai/early_access/dsl/adapters/orm}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/adapters/orm/model.py +0 -0
- {v0/relationalai/early_access/dsl/adapters → relationalai/early_access/dsl/adapters/owl}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/adapters/owl/model.py +0 -0
- {v0/relationalai/early_access/dsl/adapters/orm → relationalai/early_access/dsl/bindings}/__init__.py +0 -0
- {v0/relationalai/early_access/dsl/adapters/owl → relationalai/early_access/dsl/bindings/legacy}/__init__.py +0 -0
- {v0/relationalai/early_access/dsl/bindings → relationalai/early_access/dsl/codegen}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/constants.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/core/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/core/constraints/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/core/constraints/predicate/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/core/stack.py +0 -0
- {v0/relationalai/early_access/dsl/bindings/legacy → relationalai/early_access/dsl/core/temporal}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/core/utils.py +0 -0
- {v0/relationalai/early_access/dsl/codegen → relationalai/early_access/dsl/ir}/__init__.py +0 -0
- {v0/relationalai/early_access/dsl/core/temporal → relationalai/early_access/dsl/ontologies}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/ontologies/raw_source.py +0 -0
- {v0/relationalai/early_access/dsl/ir → relationalai/early_access/dsl/orm}/__init__.py +0 -0
- {v0/relationalai/early_access/dsl/ontologies → relationalai/early_access/dsl/orm/measures}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/orm/reasoner_errors.py +0 -0
- {v0/relationalai/early_access/dsl/orm → relationalai/early_access/dsl/physical_metadata}/__init__.py +0 -0
- {v0/relationalai/early_access/dsl/orm/measures → relationalai/early_access/dsl/serialize}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/serialize/binding_model.py +0 -0
- {v0/relationalai → relationalai}/early_access/dsl/serialize/model.py +0 -0
- {v0/relationalai/early_access/dsl/physical_metadata → relationalai/early_access/dsl/snow}/__init__.py +0 -0
- {v0/relationalai → relationalai}/early_access/tests/__init__.py +0 -0
- {v0/relationalai → relationalai}/environments/ci.py +0 -0
- {v0/relationalai → relationalai}/environments/hex.py +0 -0
- {v0/relationalai → relationalai}/environments/terminal.py +0 -0
- {v0/relationalai → relationalai}/experimental/__init__.py +0 -0
- {v0/relationalai → relationalai}/experimental/graphs.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/__init__.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/benchmarks/__init__.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/path_algorithms/__init__.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/rpq/__init__.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/rpq/filter.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/rpq/glushkov.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/rpq/transition.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/utilities/__init__.py +0 -0
- {v0/relationalai → relationalai}/experimental/paths/utilities/utilities.py +0 -0
- {v0/relationalai/early_access/dsl/serialize → relationalai/loaders}/__init__.py +0 -0
- {v0/relationalai → relationalai}/metagen.py +0 -0
- {v0/relationalai → relationalai}/metamodel.py +0 -0
- {v0/relationalai → relationalai}/rel.py +0 -0
- {v0/relationalai → relationalai}/semantics/devtools/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/internal/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/internal/annotations.py +0 -0
- {v0/relationalai → relationalai}/semantics/lqp/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/lqp/ir.py +0 -0
- {v0/relationalai → relationalai}/semantics/lqp/pragmas.py +0 -0
- {v0/relationalai → relationalai}/semantics/lqp/rewrite/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/metamodel/dataflow.py +0 -0
- {v0/relationalai → relationalai}/semantics/metamodel/ir.py +0 -0
- {v0/relationalai → relationalai}/semantics/metamodel/rewrite/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/metamodel/typer/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/metamodel/types.py +0 -0
- {v0/relationalai → relationalai}/semantics/metamodel/visitor.py +0 -0
- {v0/relationalai → relationalai}/semantics/reasoners/experimental/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/rel/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/sql/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/sql/executor/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/sql/rewrite/__init__.py +0 -0
- {v0/relationalai/early_access/dsl/snow → relationalai/semantics/tests}/__init__.py +0 -0
- {v0/relationalai → relationalai}/semantics/tests/logging.py +0 -0
- {v0/relationalai → relationalai}/std/aggregates.py +0 -0
- {v0/relationalai → relationalai}/std/dates.py +0 -0
- {v0/relationalai → relationalai}/std/graphs.py +0 -0
- {v0/relationalai → relationalai}/std/inspect.py +0 -0
- {v0/relationalai → relationalai}/std/math.py +0 -0
- {v0/relationalai → relationalai}/std/re.py +0 -0
- {v0/relationalai → relationalai}/std/strings.py +0 -0
- {v0/relationalai/loaders → relationalai/tools}/__init__.py +0 -0
- {v0/relationalai → relationalai}/tools/cleanup_snapshots.py +0 -0
- {v0/relationalai → relationalai}/tools/constants.py +0 -0
- {v0/relationalai → relationalai}/tools/query_utils.py +0 -0
- {v0/relationalai → relationalai}/tools/snapshot_viewer.py +0 -0
- {v0/relationalai → relationalai}/util/__init__.py +0 -0
- {v0/relationalai → relationalai}/util/constants.py +0 -0
- {v0/relationalai → relationalai}/util/graph.py +0 -0
- {v0/relationalai → relationalai}/util/timeout.py +0 -0
|
@@ -0,0 +1,685 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import sys
|
|
3
|
+
import time
|
|
4
|
+
import threading
|
|
5
|
+
import subprocess
|
|
6
|
+
from typing import cast, Optional
|
|
7
|
+
import click
|
|
8
|
+
from watchdog.observers import Observer
|
|
9
|
+
from watchdog.events import PatternMatchingEventHandler
|
|
10
|
+
import os
|
|
11
|
+
import rich
|
|
12
|
+
import multiprocessing
|
|
13
|
+
from relationalai import metagen
|
|
14
|
+
import tempfile
|
|
15
|
+
import webbrowser
|
|
16
|
+
import shutil
|
|
17
|
+
|
|
18
|
+
from . import snapshot_viewer as viewer
|
|
19
|
+
from . import cleanup_snapshots as cleanup
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
from .cli_controls import divider, Spinner
|
|
23
|
+
|
|
24
|
+
#--------------------------------------------------
|
|
25
|
+
# Root
|
|
26
|
+
#--------------------------------------------------
|
|
27
|
+
|
|
28
|
+
@click.group()
|
|
29
|
+
def cli():
|
|
30
|
+
pass
|
|
31
|
+
|
|
32
|
+
#--------------------------------------------------
|
|
33
|
+
# Watch
|
|
34
|
+
#--------------------------------------------------
|
|
35
|
+
|
|
36
|
+
def clear():
|
|
37
|
+
print("\033c", end="")
|
|
38
|
+
os.system('cls' if os.name == 'nt' else 'clear')
|
|
39
|
+
|
|
40
|
+
class ChangeHandler(PatternMatchingEventHandler):
|
|
41
|
+
|
|
42
|
+
def __init__(self):
|
|
43
|
+
super().__init__(patterns = ["*.py", "*.rel", "raiconfig.toml"])
|
|
44
|
+
self.script = None
|
|
45
|
+
self.process = None
|
|
46
|
+
self.event_lock = threading.Lock()
|
|
47
|
+
self.has_queued_events = False
|
|
48
|
+
|
|
49
|
+
def check_event(self, event):
|
|
50
|
+
if not event.src_path.endswith(".py"):
|
|
51
|
+
return
|
|
52
|
+
|
|
53
|
+
if "examples/" in event.src_path \
|
|
54
|
+
or "tests/end2end/test_cases/" in event.src_path \
|
|
55
|
+
or "tests/snowflake_integration/test_cases/" in event.src_path \
|
|
56
|
+
or "tests/early_access/unified/tests/" in event.src_path \
|
|
57
|
+
or "metagen.py" in event.src_path:
|
|
58
|
+
self.script = event.src_path
|
|
59
|
+
|
|
60
|
+
def on_any_event(self, event):
|
|
61
|
+
self.check_event(event)
|
|
62
|
+
with self.event_lock:
|
|
63
|
+
if self.process and self.process.poll() is None:
|
|
64
|
+
# Mark that there are queued events
|
|
65
|
+
self.has_queued_events = True
|
|
66
|
+
else:
|
|
67
|
+
self.start_process()
|
|
68
|
+
|
|
69
|
+
def start_process(self):
|
|
70
|
+
if self.script is None:
|
|
71
|
+
return
|
|
72
|
+
|
|
73
|
+
clear()
|
|
74
|
+
rich.print(f"[yellow bold]{os.path.basename(self.script)}")
|
|
75
|
+
rich.print("[yellow]------------------------------------------------------")
|
|
76
|
+
rich.print("")
|
|
77
|
+
|
|
78
|
+
# Start or restart the script
|
|
79
|
+
self.process = subprocess.Popen(['python', self.script], shell=False)
|
|
80
|
+
# Use a thread to wait for the process to finish without blocking
|
|
81
|
+
wait_thread = threading.Thread(target=self.wait_and_restart_if_needed)
|
|
82
|
+
wait_thread.start()
|
|
83
|
+
|
|
84
|
+
def wait_and_restart_if_needed(self):
|
|
85
|
+
if self.process is not None:
|
|
86
|
+
self.process.wait()
|
|
87
|
+
|
|
88
|
+
with self.event_lock:
|
|
89
|
+
if self.has_queued_events:
|
|
90
|
+
# Reset the flag and restart the process for batched events
|
|
91
|
+
self.has_queued_events = False
|
|
92
|
+
# Delay added to allow for potentially more events to accumulate
|
|
93
|
+
# Adjust or remove the delay as needed
|
|
94
|
+
time.sleep(0.5)
|
|
95
|
+
self.start_process()
|
|
96
|
+
|
|
97
|
+
@cli.command()
|
|
98
|
+
@click.argument('directory', type=click.Path(exists=True))
|
|
99
|
+
def watch(directory):
|
|
100
|
+
"""Watch a DIRECTORY and re-run a SCRIPT on file changes."""
|
|
101
|
+
event_handler = ChangeHandler()
|
|
102
|
+
observer = Observer()
|
|
103
|
+
observer.schedule(event_handler, path=directory, recursive=True) # Now recursive
|
|
104
|
+
observer.start()
|
|
105
|
+
|
|
106
|
+
clear()
|
|
107
|
+
rich.print(f"[yellow]Watching for changes in '{directory}'.")
|
|
108
|
+
rich.print("[yellow]Save a script in examples/ to run it.")
|
|
109
|
+
try:
|
|
110
|
+
while True:
|
|
111
|
+
time.sleep(1)
|
|
112
|
+
except KeyboardInterrupt:
|
|
113
|
+
observer.stop()
|
|
114
|
+
|
|
115
|
+
observer.join()
|
|
116
|
+
|
|
117
|
+
#--------------------------------------------------
|
|
118
|
+
# Code stats
|
|
119
|
+
#--------------------------------------------------
|
|
120
|
+
|
|
121
|
+
def cloc(paths):
|
|
122
|
+
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
123
|
+
src_dir = os.path.join(script_dir, '..')
|
|
124
|
+
core_paths = [os.path.join(src_dir, f) for f in paths]
|
|
125
|
+
process = subprocess.Popen(['cloc', '--json', *core_paths], stdout=subprocess.PIPE, text=True)
|
|
126
|
+
output, _ = process.communicate()
|
|
127
|
+
|
|
128
|
+
try:
|
|
129
|
+
# Parse the JSON output
|
|
130
|
+
data = json.loads(output)
|
|
131
|
+
# The total number of source lines is under 'SUM'/'code'
|
|
132
|
+
total_lines = data['SUM']['code'] if 'SUM' in data else 0
|
|
133
|
+
return cast(int, total_lines)
|
|
134
|
+
except Exception as e:
|
|
135
|
+
print(f"Error while parsing cloc output: {e}")
|
|
136
|
+
return 0
|
|
137
|
+
|
|
138
|
+
@cli.command()
|
|
139
|
+
def stats():
|
|
140
|
+
dsl = cloc(["dsl.py"])
|
|
141
|
+
compiler = cloc(["compiler.py"])
|
|
142
|
+
metamodel = cloc(["metamodel.py"])
|
|
143
|
+
emitter = cloc(["rel_emitter.py"])
|
|
144
|
+
rel = cloc(["rel.py"])
|
|
145
|
+
metagen = cloc(["metagen.py"])
|
|
146
|
+
gentest = cloc(["metagen.py"])
|
|
147
|
+
tools = cloc(["tools/"])
|
|
148
|
+
clients = cloc(["clients/"])
|
|
149
|
+
std = cloc(["std/"])
|
|
150
|
+
non_test_total = cloc(["."]) - metagen
|
|
151
|
+
total = non_test_total + gentest
|
|
152
|
+
core = dsl + compiler + metamodel + emitter + rel
|
|
153
|
+
|
|
154
|
+
max_width = len(f"{total:,}")
|
|
155
|
+
|
|
156
|
+
# Print statements with numbers right-aligned
|
|
157
|
+
divider()
|
|
158
|
+
rich.print(f"[yellow]RelationalAI {non_test_total:>{max_width},} loc")
|
|
159
|
+
rich.print(f"[yellow] Core {core:>{max_width},} loc")
|
|
160
|
+
rich.print(f"[yellow] dsl {dsl:>{max_width},} loc")
|
|
161
|
+
rich.print(f"[yellow] rel {rel:>{max_width},} loc")
|
|
162
|
+
rich.print(f"[yellow] emitter {emitter:>{max_width},} loc")
|
|
163
|
+
rich.print(f"[yellow] metamodel {metamodel:>{max_width},} loc")
|
|
164
|
+
rich.print(f"[yellow] compiler {compiler:>{max_width},} loc")
|
|
165
|
+
rich.print(f"[yellow] Clients {clients:>{max_width},} loc")
|
|
166
|
+
rich.print(f"[yellow] Std {std:>{max_width},} loc")
|
|
167
|
+
rich.print(f"[yellow] Tools {tools:>{max_width},} loc")
|
|
168
|
+
rich.print("")
|
|
169
|
+
rich.print(f"[cyan]Gentest {gentest:>{max_width},} loc")
|
|
170
|
+
rich.print("")
|
|
171
|
+
rich.print(f"[magenta]All {total:>{max_width},} loc")
|
|
172
|
+
divider()
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
#--------------------------------------------------
|
|
176
|
+
# Metagen
|
|
177
|
+
#--------------------------------------------------
|
|
178
|
+
|
|
179
|
+
@cli.command("gen")
|
|
180
|
+
@click.option('--total', default=50000, help='Total number of models to generate.')
|
|
181
|
+
@click.option('--threads', default=multiprocessing.cpu_count(), help='Threads to use, default is CPU count.')
|
|
182
|
+
@click.option('--internal', default=False, is_flag=True)
|
|
183
|
+
def gen(total, threads, internal):
|
|
184
|
+
if not internal:
|
|
185
|
+
divider()
|
|
186
|
+
with Spinner(f"Testing {total:,.0f} models on {threads:,.0f} threads", f"Tested {total:,.0f} models"):
|
|
187
|
+
if threads > 1:
|
|
188
|
+
(elapsed, results) = metagen.batches(total, threads)
|
|
189
|
+
else:
|
|
190
|
+
gen = metagen.batch(total)
|
|
191
|
+
results = [gen]
|
|
192
|
+
elapsed = gen.elapsed
|
|
193
|
+
|
|
194
|
+
rich.print("")
|
|
195
|
+
|
|
196
|
+
for result in results:
|
|
197
|
+
rich.print(result)
|
|
198
|
+
|
|
199
|
+
failed = False
|
|
200
|
+
for result in results:
|
|
201
|
+
if len(result.failures) > 0:
|
|
202
|
+
failed = True
|
|
203
|
+
rich.print()
|
|
204
|
+
result.print_failures(1)
|
|
205
|
+
rich.print("")
|
|
206
|
+
break
|
|
207
|
+
|
|
208
|
+
rich.print("")
|
|
209
|
+
rich.print(f"[yellow bold]Total time: {elapsed:,.3f}s")
|
|
210
|
+
rich.print("")
|
|
211
|
+
if not internal:
|
|
212
|
+
divider()
|
|
213
|
+
sys.exit(failed)
|
|
214
|
+
|
|
215
|
+
#--------------------------------------------------
|
|
216
|
+
# Metagen Watch
|
|
217
|
+
#--------------------------------------------------
|
|
218
|
+
|
|
219
|
+
class MetagenWatcher(PatternMatchingEventHandler):
|
|
220
|
+
|
|
221
|
+
def __init__(self, total, threads):
|
|
222
|
+
super().__init__(patterns = ["*.py"])
|
|
223
|
+
self.process = None
|
|
224
|
+
self.event_lock = threading.Lock()
|
|
225
|
+
self.has_queued_events = False
|
|
226
|
+
self.total = total
|
|
227
|
+
self.threads = threads
|
|
228
|
+
self.start_process()
|
|
229
|
+
|
|
230
|
+
def on_any_event(self, event):
|
|
231
|
+
with self.event_lock:
|
|
232
|
+
if self.process and self.process.poll() is None:
|
|
233
|
+
# Mark that there are queued events
|
|
234
|
+
self.has_queued_events = True
|
|
235
|
+
else:
|
|
236
|
+
self.start_process()
|
|
237
|
+
|
|
238
|
+
def start_process(self):
|
|
239
|
+
clear()
|
|
240
|
+
rich.print("[yellow bold]Metagen")
|
|
241
|
+
rich.print("[yellow]------------------------------------------------------")
|
|
242
|
+
rich.print("")
|
|
243
|
+
|
|
244
|
+
# Start or restart the script
|
|
245
|
+
self.process = subprocess.Popen(['rai-dev', 'gen', '--total', str(self.total), '--threads', str(self.threads), "--internal"], shell=False)
|
|
246
|
+
# Use a thread to wait for the process to finish without blocking
|
|
247
|
+
wait_thread = threading.Thread(target=self.wait_and_restart_if_needed)
|
|
248
|
+
wait_thread.start()
|
|
249
|
+
|
|
250
|
+
def wait_and_restart_if_needed(self):
|
|
251
|
+
if self.process is not None:
|
|
252
|
+
self.process.wait()
|
|
253
|
+
|
|
254
|
+
with self.event_lock:
|
|
255
|
+
if self.has_queued_events:
|
|
256
|
+
# Reset the flag and restart the process for batched events
|
|
257
|
+
self.has_queued_events = False
|
|
258
|
+
# Delay added to allow for potentially more events to accumulate
|
|
259
|
+
# Adjust or remove the delay as needed
|
|
260
|
+
time.sleep(0.5)
|
|
261
|
+
self.start_process()
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
@cli.command("gen:watch")
|
|
265
|
+
@click.argument('directory', type=click.Path(exists=True))
|
|
266
|
+
@click.option('--total', default=20000, help='Total number of models to generate')
|
|
267
|
+
@click.option('--threads', default=multiprocessing.cpu_count(), help='Threads to use')
|
|
268
|
+
def gen_watch(directory, total, threads):
|
|
269
|
+
clear()
|
|
270
|
+
event_handler = MetagenWatcher(total, threads)
|
|
271
|
+
observer = Observer()
|
|
272
|
+
observer.schedule(event_handler, path=directory, recursive=True) # Now recursive
|
|
273
|
+
observer.start()
|
|
274
|
+
|
|
275
|
+
try:
|
|
276
|
+
while True:
|
|
277
|
+
time.sleep(1)
|
|
278
|
+
except KeyboardInterrupt:
|
|
279
|
+
observer.stop()
|
|
280
|
+
|
|
281
|
+
observer.join()
|
|
282
|
+
|
|
283
|
+
#--------------------------------------------------
|
|
284
|
+
# Snapshot Management
|
|
285
|
+
#--------------------------------------------------
|
|
286
|
+
|
|
287
|
+
def get_modified_files():
|
|
288
|
+
"""Get a list of files that are modified according to git."""
|
|
289
|
+
try:
|
|
290
|
+
# Get both staged and unstaged changes
|
|
291
|
+
staged = subprocess.check_output(['git', 'diff', '--name-only', '--cached']).decode('utf-8').splitlines()
|
|
292
|
+
unstaged = subprocess.check_output(['git', 'diff', '--name-only']).decode('utf-8').splitlines()
|
|
293
|
+
untracked = subprocess.check_output(['git', 'ls-files', '--others', '--exclude-standard']).decode('utf-8').splitlines()
|
|
294
|
+
|
|
295
|
+
# Combine all changes
|
|
296
|
+
return set(staged + unstaged + untracked)
|
|
297
|
+
except subprocess.CalledProcessError:
|
|
298
|
+
print("Warning: Failed to get modified files from git. Showing all files.")
|
|
299
|
+
return None
|
|
300
|
+
|
|
301
|
+
@cli.group()
|
|
302
|
+
def snapshots():
|
|
303
|
+
"""Manage snapshot tests."""
|
|
304
|
+
pass
|
|
305
|
+
|
|
306
|
+
def get_repo_root():
|
|
307
|
+
"""Get the root directory of the repository."""
|
|
308
|
+
repo_root = os.getcwd()
|
|
309
|
+
if not os.path.exists(os.path.join(repo_root, ".git")):
|
|
310
|
+
print("Error: Please run this command from the repository root.")
|
|
311
|
+
sys.exit(1)
|
|
312
|
+
return repo_root
|
|
313
|
+
|
|
314
|
+
@snapshots.command("view")
|
|
315
|
+
@click.option('--test-dir', default='tests/early_access/unit', help='Test directory to scan')
|
|
316
|
+
@click.option('--output', default=None, help='Output HTML file (defaults to a temp file)')
|
|
317
|
+
@click.option('--all', is_flag=True, help='Show all snapshots, not just modified ones')
|
|
318
|
+
def snapshots_view(test_dir, output, all):
|
|
319
|
+
"""Generate an HTML report of snapshot tests and open it in a browser."""
|
|
320
|
+
repo_root = get_repo_root()
|
|
321
|
+
|
|
322
|
+
# Make sure the test_dir is an absolute path
|
|
323
|
+
if not os.path.isabs(test_dir):
|
|
324
|
+
test_dir = os.path.join(repo_root, test_dir)
|
|
325
|
+
|
|
326
|
+
# Check if the test directory exists
|
|
327
|
+
if not os.path.exists(test_dir):
|
|
328
|
+
print(f"Error: Test directory {test_dir} does not exist")
|
|
329
|
+
return
|
|
330
|
+
|
|
331
|
+
# Create a temporary file for the HTML report if not specified
|
|
332
|
+
if not output:
|
|
333
|
+
temp_dir = tempfile.mkdtemp()
|
|
334
|
+
output = os.path.join(temp_dir, "snapshot_report.html")
|
|
335
|
+
elif not os.path.isabs(output):
|
|
336
|
+
output = os.path.join(repo_root, output)
|
|
337
|
+
|
|
338
|
+
# Find all snapshot files
|
|
339
|
+
snapshot_files = []
|
|
340
|
+
for root, _, files in os.walk(test_dir):
|
|
341
|
+
for file in files:
|
|
342
|
+
if file.endswith('.snapshot'):
|
|
343
|
+
snapshot_files.append(os.path.join(root, file))
|
|
344
|
+
|
|
345
|
+
# Filter to only show modified snapshots if needed
|
|
346
|
+
if not all:
|
|
347
|
+
modified_files = get_modified_files()
|
|
348
|
+
if modified_files:
|
|
349
|
+
# Filter to only include modified snapshot files
|
|
350
|
+
modified_snapshots = []
|
|
351
|
+
for path in snapshot_files:
|
|
352
|
+
if any(path.endswith(f) for f in modified_files if f.endswith('.snapshot')):
|
|
353
|
+
modified_snapshots.append(path)
|
|
354
|
+
|
|
355
|
+
if modified_snapshots:
|
|
356
|
+
snapshot_files = modified_snapshots
|
|
357
|
+
print(f"Filtered to {len(snapshot_files)} modified snapshot files")
|
|
358
|
+
else:
|
|
359
|
+
print("No modified snapshot files found. Use --all to see all snapshots.")
|
|
360
|
+
|
|
361
|
+
# Use the registry to get test information
|
|
362
|
+
registry = viewer.load_snapshot_registry()
|
|
363
|
+
if not registry:
|
|
364
|
+
print("No snapshot registry found. Run tests first to create it.")
|
|
365
|
+
return
|
|
366
|
+
|
|
367
|
+
# Generate the report using the registry
|
|
368
|
+
viewer.generate_report_from_registry(registry, snapshot_files, output)
|
|
369
|
+
|
|
370
|
+
print(f"Report generated: {output}")
|
|
371
|
+
|
|
372
|
+
# Open the report in the default browser
|
|
373
|
+
webbrowser.open(f"file://{os.path.abspath(output)}")
|
|
374
|
+
|
|
375
|
+
@snapshots.command("cleanup")
|
|
376
|
+
@click.option('--test-dir', default='tests/early_access/unit', help='Test directory to scan')
|
|
377
|
+
@click.option('--remove', is_flag=True, help='Remove unused snapshot files')
|
|
378
|
+
@click.option('--regenerate', is_flag=True, help='Regenerate snapshots by running tests')
|
|
379
|
+
def snapshots_cleanup(test_dir, remove, regenerate):
|
|
380
|
+
"""Identify and optionally remove unused snapshot files."""
|
|
381
|
+
repo_root = get_repo_root()
|
|
382
|
+
|
|
383
|
+
# Make sure the test_dir is an absolute path
|
|
384
|
+
if not os.path.isabs(test_dir):
|
|
385
|
+
test_dir = os.path.join(repo_root, test_dir)
|
|
386
|
+
|
|
387
|
+
if remove and regenerate:
|
|
388
|
+
# Remove and regenerate
|
|
389
|
+
removed = cleanup.remove_snapshots(test_dir)
|
|
390
|
+
regenerated = cleanup.regenerate_snapshots(test_dir)
|
|
391
|
+
|
|
392
|
+
print(f"\nSummary: Removed {removed} snapshots, regenerated {regenerated} snapshots")
|
|
393
|
+
if removed > regenerated:
|
|
394
|
+
print(f"Cleaned up {removed - regenerated} unused snapshots")
|
|
395
|
+
elif remove:
|
|
396
|
+
# Just remove
|
|
397
|
+
cleanup.remove_snapshots(test_dir)
|
|
398
|
+
elif regenerate:
|
|
399
|
+
# Just regenerate
|
|
400
|
+
cleanup.regenerate_snapshots(test_dir)
|
|
401
|
+
else:
|
|
402
|
+
# Just count and report
|
|
403
|
+
snapshots = cleanup.find_all_snapshot_files(test_dir)
|
|
404
|
+
print(f"Found {len(snapshots)} snapshot files")
|
|
405
|
+
print("\nUse --remove to remove all snapshots")
|
|
406
|
+
print("Use --regenerate to regenerate snapshots by running tests")
|
|
407
|
+
|
|
408
|
+
#--------------------------------------------------
|
|
409
|
+
# Test Runner
|
|
410
|
+
#--------------------------------------------------
|
|
411
|
+
|
|
412
|
+
@cli.group("test")
|
|
413
|
+
def test_group():
|
|
414
|
+
"""Run tests with optional snapshot updates."""
|
|
415
|
+
pass
|
|
416
|
+
|
|
417
|
+
@test_group.command("unit")
|
|
418
|
+
@click.argument('test_path', required=False)
|
|
419
|
+
@click.option('--update', is_flag=True, help='Update snapshot files')
|
|
420
|
+
@click.option('--verbose', '-v', is_flag=True, help='Verbose output')
|
|
421
|
+
def run_unit_tests(test_path, update, verbose):
|
|
422
|
+
"""Run unit tests with optional snapshot updates."""
|
|
423
|
+
repo_root = get_repo_root()
|
|
424
|
+
|
|
425
|
+
# Determine the test path
|
|
426
|
+
if not test_path:
|
|
427
|
+
test_path = "tests/unit"
|
|
428
|
+
elif test_path == "early_access":
|
|
429
|
+
test_path = "tests/early_access/unit"
|
|
430
|
+
elif test_path == "builder":
|
|
431
|
+
test_path = "tests/early_access/unit/builder"
|
|
432
|
+
elif test_path == "ir":
|
|
433
|
+
test_path = "tests/early_access/unit/ir"
|
|
434
|
+
elif test_path == "rel":
|
|
435
|
+
test_path = "tests/early_access/unit/rel"
|
|
436
|
+
elif test_path == "sql":
|
|
437
|
+
test_path = "tests/early_access/unit/sql"
|
|
438
|
+
|
|
439
|
+
# Make sure the test_path is an absolute path
|
|
440
|
+
if not os.path.isabs(test_path):
|
|
441
|
+
test_path = os.path.join(repo_root, test_path)
|
|
442
|
+
|
|
443
|
+
# Build the command
|
|
444
|
+
cmd = ["pytest", test_path]
|
|
445
|
+
|
|
446
|
+
# Add options
|
|
447
|
+
if update:
|
|
448
|
+
cmd.append("--snapshot-update")
|
|
449
|
+
if verbose:
|
|
450
|
+
cmd.append("-v")
|
|
451
|
+
|
|
452
|
+
divider()
|
|
453
|
+
rich.print("[yellow bold]Running unit tests")
|
|
454
|
+
rich.print(f"[yellow]Test path: {test_path}")
|
|
455
|
+
rich.print("")
|
|
456
|
+
|
|
457
|
+
# Run the command
|
|
458
|
+
result = subprocess.run(cmd)
|
|
459
|
+
|
|
460
|
+
divider()
|
|
461
|
+
sys.exit(result.returncode)
|
|
462
|
+
|
|
463
|
+
@test_group.command("e2e")
|
|
464
|
+
@click.argument('test_path', required=False)
|
|
465
|
+
@click.option('--update', is_flag=True, help='Update snapshot files')
|
|
466
|
+
@click.option('--verbose', '-v', is_flag=True, help='Verbose output')
|
|
467
|
+
def run_e2e_tests(test_path, update, verbose):
|
|
468
|
+
"""Run end-to-end tests with Snowflake configuration."""
|
|
469
|
+
repo_root = get_repo_root()
|
|
470
|
+
|
|
471
|
+
# Determine the test path
|
|
472
|
+
if not test_path:
|
|
473
|
+
test_path = "tests/end2end"
|
|
474
|
+
elif test_path == "early_access":
|
|
475
|
+
test_path = "tests/early_access/end2end"
|
|
476
|
+
|
|
477
|
+
# Make sure the test_path is an absolute path
|
|
478
|
+
if not os.path.isabs(test_path):
|
|
479
|
+
test_path = os.path.join(repo_root, test_path)
|
|
480
|
+
|
|
481
|
+
# Build the command
|
|
482
|
+
cmd = ["pytest", test_path]
|
|
483
|
+
|
|
484
|
+
# Add options
|
|
485
|
+
if update:
|
|
486
|
+
cmd.append("--snapshot-update")
|
|
487
|
+
if verbose:
|
|
488
|
+
cmd.append("-v")
|
|
489
|
+
|
|
490
|
+
divider()
|
|
491
|
+
rich.print("[yellow bold]Running end-to-end tests")
|
|
492
|
+
rich.print(f"[yellow]Test path: {test_path}")
|
|
493
|
+
rich.print("")
|
|
494
|
+
|
|
495
|
+
# Run the command
|
|
496
|
+
result = subprocess.run(cmd)
|
|
497
|
+
|
|
498
|
+
divider()
|
|
499
|
+
sys.exit(result.returncode)
|
|
500
|
+
|
|
501
|
+
@test_group.command("all")
|
|
502
|
+
@click.argument('test_path', required=False)
|
|
503
|
+
@click.option('--update', is_flag=True, help='Update snapshot files')
|
|
504
|
+
@click.option('--verbose', '-v', is_flag=True, help='Verbose output')
|
|
505
|
+
def run_all_tests(test_path, update, verbose):
|
|
506
|
+
"""Run both unit and end-to-end tests."""
|
|
507
|
+
# First run unit tests
|
|
508
|
+
unit_result = subprocess.run(
|
|
509
|
+
["rai-dev", "test", "unit"] +
|
|
510
|
+
([test_path] if test_path else []) +
|
|
511
|
+
(["--update"] if update else []) +
|
|
512
|
+
(["--verbose"] if verbose else [])
|
|
513
|
+
).returncode
|
|
514
|
+
|
|
515
|
+
# Then run e2e tests
|
|
516
|
+
e2e_result = subprocess.run(
|
|
517
|
+
["rai-dev", "test", "e2e"] +
|
|
518
|
+
([test_path] if test_path else []) +
|
|
519
|
+
(["--update"] if update else []) +
|
|
520
|
+
(["--verbose"] if verbose else [])
|
|
521
|
+
).returncode
|
|
522
|
+
|
|
523
|
+
# Exit with non-zero if either test suite failed
|
|
524
|
+
if unit_result != 0 or e2e_result != 0:
|
|
525
|
+
sys.exit(1)
|
|
526
|
+
return 0
|
|
527
|
+
|
|
528
|
+
#--------------------------------------------------
|
|
529
|
+
# Build Commands
|
|
530
|
+
#--------------------------------------------------
|
|
531
|
+
|
|
532
|
+
@cli.command("build")
|
|
533
|
+
def build_command():
|
|
534
|
+
"""Build the package."""
|
|
535
|
+
result = subprocess.run(["python", "-m", "build"])
|
|
536
|
+
sys.exit(result.returncode)
|
|
537
|
+
|
|
538
|
+
@cli.command("build:zip")
|
|
539
|
+
def build_zip_command():
|
|
540
|
+
"""Build the Snowflake notebook zip file."""
|
|
541
|
+
result = subprocess.run(["python", "-m", "tools.snowflake_notebook.stage_zip"])
|
|
542
|
+
sys.exit(result.returncode)
|
|
543
|
+
|
|
544
|
+
#--------------------------------------------------
|
|
545
|
+
# Type Checking
|
|
546
|
+
#--------------------------------------------------
|
|
547
|
+
|
|
548
|
+
@cli.command("typecheck")
|
|
549
|
+
@click.option('--path', default='', help='Path to typecheck')
|
|
550
|
+
def typecheck(path):
|
|
551
|
+
"""Run pyright type checking."""
|
|
552
|
+
divider()
|
|
553
|
+
rich.print("[yellow bold]Running type checking with pyright")
|
|
554
|
+
rich.print("")
|
|
555
|
+
|
|
556
|
+
result = subprocess.run(["pyright"] + ([path] if path else []))
|
|
557
|
+
|
|
558
|
+
divider()
|
|
559
|
+
sys.exit(result.returncode)
|
|
560
|
+
|
|
561
|
+
#--------------------------------------------------
|
|
562
|
+
# Linting
|
|
563
|
+
#--------------------------------------------------
|
|
564
|
+
|
|
565
|
+
@cli.command("lint")
|
|
566
|
+
@click.option('--path', default='', help='Path to lint')
|
|
567
|
+
def lint(path):
|
|
568
|
+
"""Run ruff linting."""
|
|
569
|
+
divider()
|
|
570
|
+
rich.print("[yellow bold]Running linting with ruff")
|
|
571
|
+
rich.print("")
|
|
572
|
+
|
|
573
|
+
result = subprocess.run(["ruff", "check"] + ([path] if path else []))
|
|
574
|
+
|
|
575
|
+
divider()
|
|
576
|
+
sys.exit(result.returncode)
|
|
577
|
+
|
|
578
|
+
#--------------------------------------------------
|
|
579
|
+
# Syncing Dependencies
|
|
580
|
+
#--------------------------------------------------
|
|
581
|
+
|
|
582
|
+
@cli.command("sync")
|
|
583
|
+
def sync():
|
|
584
|
+
"""Sync dependencies."""
|
|
585
|
+
divider()
|
|
586
|
+
rich.print("[yellow bold]Syncing dependencies")
|
|
587
|
+
rich.print("")
|
|
588
|
+
|
|
589
|
+
result = subprocess.run(["python", "-m", "pip", "install", "-r", "requirements.lock"])
|
|
590
|
+
|
|
591
|
+
divider()
|
|
592
|
+
sys.exit(result.returncode)
|
|
593
|
+
|
|
594
|
+
#--------------------------------------------------
|
|
595
|
+
# Update Lockfile
|
|
596
|
+
#--------------------------------------------------
|
|
597
|
+
|
|
598
|
+
@cli.command("lockfile", help="Update requirements.lock file with latest dependencies.")
|
|
599
|
+
@click.argument("update", required=True, default=None)
|
|
600
|
+
def update_lockfile(update):
|
|
601
|
+
LOCKFILE = "requirements.lock"
|
|
602
|
+
if update != "update":
|
|
603
|
+
rich.print(f"[yellow]Do `rai-dev lockfile update` to update {LOCKFILE}")
|
|
604
|
+
return
|
|
605
|
+
"""Update requirements lockfile with latest dependencies."""
|
|
606
|
+
divider()
|
|
607
|
+
rich.print(f"[yellow bold]Updating {LOCKFILE}")
|
|
608
|
+
rich.print("")
|
|
609
|
+
|
|
610
|
+
PYPROJECT_FILE = "pyproject.toml"
|
|
611
|
+
REQUIREMENTS_LOCK = LOCKFILE
|
|
612
|
+
|
|
613
|
+
# Ensure pip-tools is installed
|
|
614
|
+
if shutil.which("pip-compile") is None:
|
|
615
|
+
rich.print("pip-tools not found, installing it...")
|
|
616
|
+
subprocess.run([sys.executable, "-m", "pip", "install", "pip-tools"], check=True)
|
|
617
|
+
|
|
618
|
+
# Run pip-compile to generate requirements.lock
|
|
619
|
+
rich.print(f"Running pip-compile to generate {REQUIREMENTS_LOCK}...")
|
|
620
|
+
subprocess.run(
|
|
621
|
+
[
|
|
622
|
+
sys.executable,
|
|
623
|
+
"-m",
|
|
624
|
+
"piptools",
|
|
625
|
+
"compile",
|
|
626
|
+
"--quiet",
|
|
627
|
+
"--no-strip-extras",
|
|
628
|
+
"--upgrade",
|
|
629
|
+
"--resolver=backtracking",
|
|
630
|
+
"--extra",
|
|
631
|
+
"dev",
|
|
632
|
+
"--extra",
|
|
633
|
+
"ea",
|
|
634
|
+
"-o",
|
|
635
|
+
REQUIREMENTS_LOCK,
|
|
636
|
+
PYPROJECT_FILE,
|
|
637
|
+
],
|
|
638
|
+
check=True
|
|
639
|
+
)
|
|
640
|
+
|
|
641
|
+
# Append -e . to the requirements file
|
|
642
|
+
with open(REQUIREMENTS_LOCK, "a") as f:
|
|
643
|
+
f.write("\n\n# Add the project root as a local package\n")
|
|
644
|
+
f.write("-e .\n")
|
|
645
|
+
|
|
646
|
+
rich.print(f"✔ Updated {REQUIREMENTS_LOCK}")
|
|
647
|
+
|
|
648
|
+
divider()
|
|
649
|
+
|
|
650
|
+
#--------------------------------------------------
|
|
651
|
+
# TPCH Commands
|
|
652
|
+
#--------------------------------------------------
|
|
653
|
+
|
|
654
|
+
@cli.group("tpch")
|
|
655
|
+
def tpch_group():
|
|
656
|
+
"""Run TPCH benchmark queries."""
|
|
657
|
+
pass
|
|
658
|
+
|
|
659
|
+
@tpch_group.command()
|
|
660
|
+
@click.argument("query_num", type=int, required=False)
|
|
661
|
+
@click.option("--all", "run_all", is_flag=True, help="Run all TPCH queries")
|
|
662
|
+
@click.option("--verbose", "-v", is_flag=True, help="Show verbose output")
|
|
663
|
+
def run(query_num: Optional[int], run_all: bool, verbose: bool):
|
|
664
|
+
"""Run TPCH queries. If no query number is provided, runs all queries."""
|
|
665
|
+
repo_root = get_repo_root()
|
|
666
|
+
tpch_path = os.path.join(repo_root, "examples/builder/tpch/runner.py")
|
|
667
|
+
|
|
668
|
+
# Build pytest arguments
|
|
669
|
+
pytest_args = [tpch_path, "-s"] # -s shows output in real-time
|
|
670
|
+
if verbose:
|
|
671
|
+
pytest_args.append("-v")
|
|
672
|
+
|
|
673
|
+
if query_num is not None:
|
|
674
|
+
pytest_args.extend(["-k", f"test_query[{query_num}]"])
|
|
675
|
+
|
|
676
|
+
divider()
|
|
677
|
+
rich.print("[yellow bold]Running TPCH queries")
|
|
678
|
+
rich.print(f"[yellow]Query: {'All' if query_num is None else query_num}")
|
|
679
|
+
rich.print("")
|
|
680
|
+
|
|
681
|
+
# Run pytest
|
|
682
|
+
result = subprocess.run(["pytest"] + pytest_args)
|
|
683
|
+
|
|
684
|
+
divider()
|
|
685
|
+
sys.exit(result.returncode)
|
relationalai/tools/notes
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
[x] [config] active_profile thing
|
|
3
|
+
[x] skip keybinding
|
|
4
|
+
[x] Choice class in InquirerPy
|
|
5
|
+
[x] double-check that config:explain works correctly
|
|
6
|
+
[ ] Set up Snowflake testing: staging account on Snowflake and getting a PyRel testing account
|
|
7
|
+
(don't block on this one)
|