relationalai 0.12.4__py3-none-any.whl → 0.12.7__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.
- relationalai/__init__.py +4 -0
- relationalai/clients/snowflake.py +34 -13
- relationalai/early_access/lqp/constructors/__init__.py +2 -2
- relationalai/early_access/metamodel/rewrite/__init__.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/README.md +2 -2
- relationalai/experimental/paths/__init__.py +14 -309
- relationalai/{semantics/reasoners/graph → experimental}/paths/examples/basic_example.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/examples/paths_benchmark.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/examples/paths_example.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/examples/pattern_to_automaton.py +1 -1
- relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/one_sided_ball_repetition.py +1 -1
- relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/single.py +3 -3
- relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/two_sided_balls_repetition.py +1 -1
- relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/two_sided_balls_upto.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/usp-old.py +3 -3
- relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/usp-tuple.py +3 -3
- relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/usp.py +3 -3
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_limit_sp_max_length.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_limit_sp_multiple.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_limit_sp_single.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_limit_walks_multiple.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_limit_walks_single.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_one_sided_ball_repetition_multiple.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_one_sided_ball_repetition_single.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_one_sided_ball_upto_multiple.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_one_sided_ball_upto_single.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_single_paths.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_single_walks.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_single_walks_undirected.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_two_sided_balls_repetition_multiple.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_two_sided_balls_repetition_single.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_two_sided_balls_upto_multiple.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_two_sided_balls_upto_single.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_usp_nsp_multiple.py +2 -2
- relationalai/{semantics/reasoners/graph → experimental}/paths/tests/tests_usp_nsp_single.py +2 -2
- relationalai/semantics/__init__.py +4 -0
- relationalai/semantics/internal/annotations.py +1 -0
- relationalai/semantics/internal/internal.py +3 -4
- relationalai/semantics/internal/snowflake.py +14 -1
- relationalai/semantics/lqp/builtins.py +1 -0
- relationalai/semantics/lqp/constructors.py +0 -5
- relationalai/semantics/lqp/executor.py +34 -10
- relationalai/semantics/lqp/intrinsics.py +2 -2
- relationalai/semantics/lqp/model2lqp.py +105 -9
- relationalai/semantics/lqp/passes.py +27 -8
- relationalai/semantics/lqp/primitives.py +18 -15
- relationalai/semantics/lqp/rewrite/__init__.py +2 -2
- relationalai/semantics/lqp/rewrite/{fd_constraints.py → function_annotations.py} +4 -4
- relationalai/semantics/lqp/utils.py +17 -13
- relationalai/semantics/metamodel/builtins.py +50 -1
- relationalai/semantics/metamodel/typer/typer.py +3 -0
- relationalai/semantics/reasoners/__init__.py +4 -0
- relationalai/semantics/reasoners/experimental/__init__.py +7 -0
- relationalai/semantics/reasoners/graph/core.py +1154 -122
- relationalai/semantics/rel/builtins.py +3 -1
- relationalai/semantics/rel/compiler.py +2 -2
- relationalai/semantics/rel/executor.py +30 -8
- relationalai/semantics/rel/rel_utils.py +5 -0
- relationalai/semantics/snowflake/__init__.py +2 -2
- relationalai/semantics/sql/compiler.py +6 -0
- relationalai/semantics/sql/executor/snowflake.py +6 -2
- relationalai/semantics/tests/test_snapshot_abstract.py +5 -4
- {relationalai-0.12.4.dist-info → relationalai-0.12.7.dist-info}/METADATA +2 -2
- {relationalai-0.12.4.dist-info → relationalai-0.12.7.dist-info}/RECORD +99 -115
- {relationalai-0.12.4.dist-info → relationalai-0.12.7.dist-info}/WHEEL +1 -1
- relationalai/early_access/paths/__init__.py +0 -22
- relationalai/early_access/paths/api/__init__.py +0 -12
- relationalai/early_access/paths/benchmarks/__init__.py +0 -13
- relationalai/early_access/paths/graph/__init__.py +0 -12
- relationalai/early_access/paths/path_algorithms/find_paths/__init__.py +0 -12
- relationalai/early_access/paths/path_algorithms/one_sided_ball_repetition/__init__.py +0 -12
- relationalai/early_access/paths/path_algorithms/one_sided_ball_upto/__init__.py +0 -12
- relationalai/early_access/paths/path_algorithms/single/__init__.py +0 -12
- relationalai/early_access/paths/path_algorithms/two_sided_balls_repetition/__init__.py +0 -12
- relationalai/early_access/paths/path_algorithms/two_sided_balls_upto/__init__.py +0 -12
- relationalai/early_access/paths/path_algorithms/usp/__init__.py +0 -12
- relationalai/early_access/paths/rpq/__init__.py +0 -13
- relationalai/early_access/paths/utilities/iterators/__init__.py +0 -12
- relationalai/experimental/paths/pathfinder.rel +0 -2560
- relationalai/semantics/reasoners/graph/paths/__init__.py +0 -16
- relationalai/semantics/reasoners/graph/paths/path_algorithms/__init__.py +0 -3
- relationalai/semantics/reasoners/graph/paths/utilities/__init__.py +0 -3
- /relationalai/{semantics/reasoners/graph → experimental}/paths/api.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/benchmarks/__init__.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/benchmarks/grid_graph.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/code_organization.md +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/Movies.ipynb +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/minimal_engine_warmup.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movie_example.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/actedin.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/directed.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/follows.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/movies.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/person.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/produced.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/ratings.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/examples/movies_data/wrote.csv +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/find_paths_via_automaton.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/graph.py +0 -0
- /relationalai/{early_access → experimental}/paths/path_algorithms/__init__.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/find_paths.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/path_algorithms/one_sided_ball_upto.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/product_graph.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/rpq/__init__.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/rpq/automaton.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/rpq/diagnostics.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/rpq/filter.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/rpq/glushkov.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/rpq/rpq.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/rpq/transition.py +0 -0
- /relationalai/{early_access → experimental}/paths/utilities/__init__.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/utilities/iterators.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/utilities/prefix_sum.py +0 -0
- /relationalai/{semantics/reasoners/graph → experimental}/paths/utilities/utilities.py +0 -0
- {relationalai-0.12.4.dist-info → relationalai-0.12.7.dist-info}/entry_points.txt +0 -0
- {relationalai-0.12.4.dist-info → relationalai-0.12.7.dist-info}/licenses/LICENSE +0 -0
|
@@ -30,9 +30,11 @@ inner_loop_non_stratified_annotation = f.annotation(inner_loop_non_stratified, [
|
|
|
30
30
|
# collect all supported builtin rel annotations
|
|
31
31
|
builtin_annotations = OrderedSet.from_iterable([
|
|
32
32
|
arrow, no_diagnostics, no_inline, function, inner_loop, inner_loop_non_stratified,
|
|
33
|
-
|
|
33
|
+
|
|
34
|
+
# annotations on relations that do not currently propagate into Rel
|
|
34
35
|
# TODO: from Thiago, ensure annotation goes from the Logical into the proper declaration
|
|
35
36
|
builtins.track,
|
|
37
|
+
builtins.recursion_config,
|
|
36
38
|
])
|
|
37
39
|
|
|
38
40
|
builtin_annotation_names = OrderedSet.from_iterable([a.name for a in builtin_annotations])
|
|
@@ -12,7 +12,7 @@ from relationalai.semantics.metamodel.util import OrderedSet, group_by, NameCach
|
|
|
12
12
|
from relationalai.semantics.rel import rel, rel_utils as u, builtins as rel_bt
|
|
13
13
|
|
|
14
14
|
from ..metamodel.rewrite import (Flatten, ExtractNestedLogicals, DNFUnionSplitter, DischargeConstraints)
|
|
15
|
-
from ..lqp.rewrite import CDC, ExtractCommon, ExtractKeys,
|
|
15
|
+
from ..lqp.rewrite import CDC, ExtractCommon, ExtractKeys, FunctionAnnotations, QuantifyVars, Splinter
|
|
16
16
|
|
|
17
17
|
import math
|
|
18
18
|
|
|
@@ -24,7 +24,7 @@ import math
|
|
|
24
24
|
class Compiler(c.Compiler):
|
|
25
25
|
def __init__(self):
|
|
26
26
|
super().__init__([
|
|
27
|
-
|
|
27
|
+
FunctionAnnotations(),
|
|
28
28
|
DischargeConstraints(),
|
|
29
29
|
Checker(),
|
|
30
30
|
CDC(), # specialize to physical relations before extracting nested and typing
|
|
@@ -7,13 +7,13 @@ import textwrap
|
|
|
7
7
|
import uuid
|
|
8
8
|
|
|
9
9
|
from pandas import DataFrame
|
|
10
|
-
from typing import Any, Optional, Literal
|
|
10
|
+
from typing import Any, Optional, Literal, TYPE_CHECKING
|
|
11
11
|
from snowflake.snowpark import Session
|
|
12
12
|
import relationalai as rai
|
|
13
13
|
|
|
14
14
|
from relationalai import debugging
|
|
15
15
|
from relationalai.clients import result_helpers
|
|
16
|
-
from relationalai.clients.util import IdentityParser
|
|
16
|
+
from relationalai.clients.util import IdentityParser, escape_for_f_string
|
|
17
17
|
from relationalai.clients.snowflake import APP_NAME
|
|
18
18
|
from relationalai.semantics.metamodel import ir, executor as e, factory as f
|
|
19
19
|
from relationalai.semantics.rel import Compiler
|
|
@@ -21,6 +21,8 @@ from relationalai.clients.config import Config
|
|
|
21
21
|
from relationalai.tools.constants import USE_DIRECT_ACCESS, Generation, QUERY_ATTRIBUTES_HEADER
|
|
22
22
|
from relationalai.tools.query_utils import prepare_metadata_for_headers
|
|
23
23
|
|
|
24
|
+
if TYPE_CHECKING:
|
|
25
|
+
from relationalai.semantics.snowflake import Table
|
|
24
26
|
|
|
25
27
|
class RelExecutor(e.Executor):
|
|
26
28
|
"""Executes Rel code using the RAI client."""
|
|
@@ -160,12 +162,13 @@ class RelExecutor(e.Executor):
|
|
|
160
162
|
elif len(all_errors) > 1:
|
|
161
163
|
raise errors.RAIExceptionSet(all_errors)
|
|
162
164
|
|
|
163
|
-
def _export(self, raw_code: str,
|
|
165
|
+
def _export(self, raw_code: str, dest: Table, actual_cols: list[str], declared_cols: list[str], update:bool, headers: dict[str, Any] | None = None):
|
|
164
166
|
_exec = self.resources._exec
|
|
165
167
|
output_table = "out" + str(uuid.uuid4()).replace("-", "_")
|
|
166
168
|
txn_id = None
|
|
167
169
|
artifacts = None
|
|
168
|
-
dest_database, dest_schema, dest_table, _ = IdentityParser(
|
|
170
|
+
dest_database, dest_schema, dest_table, _ = IdentityParser(dest._fqn, require_all_parts=True).to_list()
|
|
171
|
+
dest_fqn = dest._fqn
|
|
169
172
|
assert self.resources._session
|
|
170
173
|
with debugging.span("transaction"):
|
|
171
174
|
try:
|
|
@@ -189,6 +192,26 @@ class RelExecutor(e.Executor):
|
|
|
189
192
|
fields.append(field)
|
|
190
193
|
names = ", ".join(fields)
|
|
191
194
|
if not update:
|
|
195
|
+
|
|
196
|
+
createTableLogic = f"""
|
|
197
|
+
CREATE TABLE {dest_fqn} AS
|
|
198
|
+
SELECT {names}
|
|
199
|
+
FROM {APP_NAME}.results.{output_table};
|
|
200
|
+
"""
|
|
201
|
+
if dest._is_iceberg:
|
|
202
|
+
assert dest._iceberg_config is not None
|
|
203
|
+
external_volume_clause = ""
|
|
204
|
+
if dest._iceberg_config.external_volume:
|
|
205
|
+
external_volume_clause = f"EXTERNAL_VOLUME = '{dest._iceberg_config.external_volume}'"
|
|
206
|
+
createTableLogic = f"""
|
|
207
|
+
CREATE ICEBERG TABLE {dest_fqn}
|
|
208
|
+
CATALOG = "SNOWFLAKE"
|
|
209
|
+
{external_volume_clause}
|
|
210
|
+
AS
|
|
211
|
+
SELECT {names}
|
|
212
|
+
FROM {APP_NAME}.results.{output_table};
|
|
213
|
+
"""
|
|
214
|
+
|
|
192
215
|
_exec(f"""
|
|
193
216
|
BEGIN
|
|
194
217
|
-- Check if table exists
|
|
@@ -210,9 +233,7 @@ class RelExecutor(e.Executor):
|
|
|
210
233
|
ELSE
|
|
211
234
|
-- Create table based on the SELECT
|
|
212
235
|
EXECUTE IMMEDIATE '
|
|
213
|
-
|
|
214
|
-
SELECT {names}
|
|
215
|
-
FROM {APP_NAME}.results.{output_table};
|
|
236
|
+
{escape_for_f_string(createTableLogic)}
|
|
216
237
|
';
|
|
217
238
|
END IF;
|
|
218
239
|
CALL {APP_NAME}.api.drop_result_table('{output_table}');
|
|
@@ -252,7 +273,7 @@ class RelExecutor(e.Executor):
|
|
|
252
273
|
return artifacts
|
|
253
274
|
|
|
254
275
|
def execute(self, model: ir.Model, task: ir.Task, format: Literal["pandas", "snowpark"] = "pandas",
|
|
255
|
-
|
|
276
|
+
export_to: Optional[Table] = None, update: bool = False, meta: dict[str, Any] | None = None) -> Any:
|
|
256
277
|
# Format meta as headers
|
|
257
278
|
json_meta = prepare_metadata_for_headers(meta)
|
|
258
279
|
headers = {QUERY_ATTRIBUTES_HEADER: json_meta} if json_meta else {}
|
|
@@ -316,6 +337,7 @@ class RelExecutor(e.Executor):
|
|
|
316
337
|
else:
|
|
317
338
|
assert cols
|
|
318
339
|
# The result cols should be a superset of the actual cols.
|
|
340
|
+
result_cols = export_to._col_names
|
|
319
341
|
if result_cols is not None:
|
|
320
342
|
assert all(col in result_cols or col in extra_cols for col in cols)
|
|
321
343
|
else:
|
|
@@ -153,6 +153,11 @@ OPERATORS = {
|
|
|
153
153
|
# pragmas
|
|
154
154
|
"rule_reasoner_sem_vo": "rel_primitive_force_faq_var_order",
|
|
155
155
|
"rule_reasoner_phys_vo": "rel_primitive_force_var_order",
|
|
156
|
+
|
|
157
|
+
# primitive graph algorithms
|
|
158
|
+
"infomap": "rel_primitive_infomap",
|
|
159
|
+
"louvain": "rel_primitive_louvain",
|
|
160
|
+
"label_propagation": "rel_primitive_async_label_propagation",
|
|
156
161
|
}
|
|
157
162
|
|
|
158
163
|
def rel_operator(ir_op):
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
from relationalai.semantics.internal.snowflake import Table, is_direct_access_enabled
|
|
1
|
+
from relationalai.semantics.internal.snowflake import Table, is_direct_access_enabled, IcebergConfig
|
|
2
2
|
|
|
3
|
-
__all__ = ["Table", "is_direct_access_enabled"]
|
|
3
|
+
__all__ = ["Table", "is_direct_access_enabled", "IcebergConfig"]
|
|
@@ -1334,6 +1334,12 @@ class ModelToSQL:
|
|
|
1334
1334
|
if tz.lower() != "'utc'":
|
|
1335
1335
|
sub_expr = f"convert_timezone({tz}, 'UTC', {sub_expr})"
|
|
1336
1336
|
builtin_vars[result] = f"cast({sub_expr} as DATETIME)"
|
|
1337
|
+
elif relation == builtins.infomap:
|
|
1338
|
+
raise NotImplementedError("`infomap` is not supported in SQL")
|
|
1339
|
+
elif relation == builtins.louvain:
|
|
1340
|
+
raise NotImplementedError("`louvain` is not supported in SQL")
|
|
1341
|
+
elif relation == builtins.label_propagation:
|
|
1342
|
+
raise NotImplementedError("`label_propagation` is not supported in SQL")
|
|
1337
1343
|
else:
|
|
1338
1344
|
# Assuming infix binary or ternary operators here
|
|
1339
1345
|
lhs, rhs = args[0], args[1]
|
|
@@ -6,7 +6,7 @@ import uuid
|
|
|
6
6
|
import relationalai as rai
|
|
7
7
|
import pandas as pd
|
|
8
8
|
|
|
9
|
-
from typing import Any, Union, Optional, Literal
|
|
9
|
+
from typing import Any, Union, Optional, Literal, TYPE_CHECKING
|
|
10
10
|
from snowflake.snowpark import Session
|
|
11
11
|
|
|
12
12
|
from .. import Compiler
|
|
@@ -18,6 +18,10 @@ from relationalai.semantics.metamodel.visitor import collect_by_type
|
|
|
18
18
|
from relationalai.semantics.metamodel.typer import typer
|
|
19
19
|
from relationalai.tools.constants import USE_DIRECT_ACCESS
|
|
20
20
|
|
|
21
|
+
if TYPE_CHECKING:
|
|
22
|
+
from relationalai.semantics.snowflake import Table
|
|
23
|
+
|
|
24
|
+
|
|
21
25
|
class SnowflakeExecutor(e.Executor):
|
|
22
26
|
"""Executes SQL using the RAI client."""
|
|
23
27
|
|
|
@@ -61,7 +65,7 @@ class SnowflakeExecutor(e.Executor):
|
|
|
61
65
|
return self._provider
|
|
62
66
|
|
|
63
67
|
def execute(self, model: ir.Model, task: ir.Task, format:Literal["pandas", "snowpark"]="pandas",
|
|
64
|
-
|
|
68
|
+
export_to: Optional[Table] = None,
|
|
65
69
|
update: bool = False, meta: dict[str, Any] | None = None) -> Union[pd.DataFrame, Any]:
|
|
66
70
|
""" Execute the SQL query directly. """
|
|
67
71
|
|
|
@@ -19,7 +19,7 @@ class AbstractSnapshotTest(ABC):
|
|
|
19
19
|
provider:Provider = cast(SFProvider, Provider()) # type: ignore
|
|
20
20
|
|
|
21
21
|
def run_snapshot_test(self, snapshot, script_path, db_schema=None, use_sql=False, use_lqp=True, use_rel=False,
|
|
22
|
-
use_direct_access=False, e2e=False, use_csv=True):
|
|
22
|
+
use_direct_access=False, e2e=False, use_csv=True, e2e_only=False):
|
|
23
23
|
# Resolve use_lqp
|
|
24
24
|
use_lqp = use_lqp and (not use_rel) # use_rel overrides because use_lqp is default.
|
|
25
25
|
|
|
@@ -83,13 +83,14 @@ class AbstractSnapshotTest(ABC):
|
|
|
83
83
|
export_exists = not dry_run and self.is_export_exists(export_fqn)
|
|
84
84
|
# match snapshots
|
|
85
85
|
self.assert_match_snapshots(script_path, snapshot, handler, export_exists, export_fqn, use_sql=use_sql,
|
|
86
|
-
use_lqp=use_lqp, e2e=e2e, use_csv=use_csv)
|
|
86
|
+
use_lqp=use_lqp, e2e=e2e, use_csv=use_csv, e2e_only=e2e_only)
|
|
87
87
|
# cleanup resources created during a test run
|
|
88
88
|
self.cleanup(export_exists, export_fqn)
|
|
89
89
|
|
|
90
90
|
def assert_match_snapshots(self, script_path, snapshot, handler, export_exists=False, export_fqn=None, use_sql=False,
|
|
91
|
-
use_lqp=True, e2e=False, use_csv=True):
|
|
92
|
-
|
|
91
|
+
use_lqp=True, e2e=False, use_csv=True, e2e_only=False):
|
|
92
|
+
if not e2e_only:
|
|
93
|
+
self.assert_match_internal_results_snapshots(snapshot, handler, use_sql, use_lqp)
|
|
93
94
|
if e2e:
|
|
94
95
|
self.assert_match_results_snapshots(script_path, snapshot, handler)
|
|
95
96
|
if export_fqn and export_exists:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: relationalai
|
|
3
|
-
Version: 0.12.
|
|
3
|
+
Version: 0.12.7
|
|
4
4
|
Summary: RelationalAI Library and CLI
|
|
5
5
|
Author-email: RelationalAI <support@relational.ai>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -11,7 +11,7 @@ Requires-Dist: colorama
|
|
|
11
11
|
Requires-Dist: cryptography
|
|
12
12
|
Requires-Dist: gravis
|
|
13
13
|
Requires-Dist: inquirerpy
|
|
14
|
-
Requires-Dist: lqp==0.1.
|
|
14
|
+
Requires-Dist: lqp==0.1.18
|
|
15
15
|
Requires-Dist: nicegui==2.16.1
|
|
16
16
|
Requires-Dist: numpy<2
|
|
17
17
|
Requires-Dist: opentelemetry-api
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
relationalai/__init__.py,sha256=
|
|
1
|
+
relationalai/__init__.py,sha256=pqV4xZy0r6EFZAoW6RXOFrfeiLPxgdCBu0L35KHXOyU,7684
|
|
2
2
|
relationalai/compiler.py,sha256=5LZY8AyqadkTLSe_xoJ3J9iXOmetz5YQn9EjJKk8XeQ,6411
|
|
3
3
|
relationalai/debugging.py,sha256=dfT0gEDpL56GflVmtUrYVbYcVcZmQL26Vf_F8cI1QKY,11891
|
|
4
4
|
relationalai/dependencies.py,sha256=tL113efcISkJUiDXYHmRdU_usdD7gmee-VRHA7N4EFA,16574
|
|
@@ -28,7 +28,7 @@ relationalai/clients/export_procedure.py.jinja,sha256=nhvVcs5hQyWExFDuROQbi1VyYz
|
|
|
28
28
|
relationalai/clients/hash_util.py,sha256=pZVR1FX3q4G_19p_r6wpIR2tIM8_WUlfAR7AVZJjIYM,1495
|
|
29
29
|
relationalai/clients/profile_polling.py,sha256=pUH7WKH4nYDD0SlQtg3wsWdj0K7qt6nZqUw8jTthCBs,2565
|
|
30
30
|
relationalai/clients/result_helpers.py,sha256=wDSD02Ngx6W-YQqBIGKnpXD4Ju3pA1e9Nz6ORRI6SRI,17808
|
|
31
|
-
relationalai/clients/snowflake.py,sha256=
|
|
31
|
+
relationalai/clients/snowflake.py,sha256=nlEQG6HlvDe5TCVT5PIm_wo-Y_ymtFnqrcSsPINJufw,164008
|
|
32
32
|
relationalai/clients/types.py,sha256=eNo6akcMTbnBFbBbHd5IgVeY-zuAgtXlOs8Bo1SWmVU,2890
|
|
33
33
|
relationalai/clients/use_index_poller.py,sha256=OFeTJ3fF98UoVk6MA8v8ri8WPbmmCquyA4T8MD_T1Xc,46398
|
|
34
34
|
relationalai/clients/util.py,sha256=NJC8fnrWHR01NydwESPSetIHRWf7jQJURYpaWJjmDyE,12311
|
|
@@ -163,7 +163,7 @@ relationalai/early_access/dsl/types/values.py,sha256=zP6Ovf3H9RZFFPsPcEdZ1GdfHCl
|
|
|
163
163
|
relationalai/early_access/graphs/__init__.py,sha256=4s2waMnXWG3lRF_jii9CaveOYQluJwq1GK3NV1se8d8,304
|
|
164
164
|
relationalai/early_access/lqp/__init__.py,sha256=D6Au6H1oIPO_x5AuV8Of90JvD5845AWygyqlAfBX2ks,319
|
|
165
165
|
relationalai/early_access/lqp/compiler/__init__.py,sha256=AaxiWct-ZXLr8nIRn2ybcM-wSGGVLC3lsWaJVPPR2R8,279
|
|
166
|
-
relationalai/early_access/lqp/constructors/__init__.py,sha256=
|
|
166
|
+
relationalai/early_access/lqp/constructors/__init__.py,sha256=ylitkCoQlTe0tWOVX9CiYya_fj1SnQhmK3O4ksBxOqk,525
|
|
167
167
|
relationalai/early_access/lqp/executor/__init__.py,sha256=4H2krSmtTJX97rBN5ugIc7EoUQ96gzC9kmcZXS5EMbw,285
|
|
168
168
|
relationalai/early_access/lqp/ir/__init__.py,sha256=80dggZVWTlnIqbHOC9fmunlRO2-We2eTDPyilLVCTCA,313
|
|
169
169
|
relationalai/early_access/lqp/passes/__init__.py,sha256=QsW1mzsMTTC7LTDIVW3bQJKvrNzwdwUz5JpBdbPjOtM,277
|
|
@@ -179,27 +179,12 @@ relationalai/early_access/metamodel/dependency/__init__.py,sha256=bkrnbq8aRMwCPD
|
|
|
179
179
|
relationalai/early_access/metamodel/factory/__init__.py,sha256=_boK2qJ4v_JVFn4OelJx3GTA3X48Yc5yCxq_DxG6fUs,946
|
|
180
180
|
relationalai/early_access/metamodel/helpers/__init__.py,sha256=bkEbkPFhvcVhnwRAAJxEUMWlI5r3iYuyTIDINfY1frs,320
|
|
181
181
|
relationalai/early_access/metamodel/ir/__init__.py,sha256=1oJzbPkQrRf5Cng51u1rZUa_sxIzSaSE4m6pvnHTUfE,571
|
|
182
|
-
relationalai/early_access/metamodel/rewrite/__init__.py,sha256=
|
|
182
|
+
relationalai/early_access/metamodel/rewrite/__init__.py,sha256=k7dbum8RWzcped7GuSP77wunBD7nNeop89M4KiU06l8,354
|
|
183
183
|
relationalai/early_access/metamodel/typer/__init__.py,sha256=va6-xIBBh3B28O5JEUeXsu38FcZPTDTQuym4BDrshmw,123
|
|
184
184
|
relationalai/early_access/metamodel/typer/typer/__init__.py,sha256=gUfw_Zkk_wq1iycTp7yrOxpZJs5GctvsLmatlmKlcFM,432
|
|
185
185
|
relationalai/early_access/metamodel/types/__init__.py,sha256=M7KDNQyO7uA_p_U_IRT3jYaOzhVVDm5MBjgQdxZqWsY,741
|
|
186
186
|
relationalai/early_access/metamodel/util/__init__.py,sha256=zptFICgS_-tOToC3CfglZYcSmt41XcIeuTVESCE_B2g,701
|
|
187
187
|
relationalai/early_access/metamodel/visitor/__init__.py,sha256=cGBnEcoKn1dC0lntu3Bi5g9qtITRWx4AS3Nj0xdyPLA,388
|
|
188
|
-
relationalai/early_access/paths/__init__.py,sha256=D6SW30WhYBed3E8YvK4nR-DFkTwyeRgKlY_aJB8X8Rk,457
|
|
189
|
-
relationalai/early_access/paths/api/__init__.py,sha256=R38HqlgpQ2jWFt0CytYxuvvB90iEOzmPH9gFFORcWmE,382
|
|
190
|
-
relationalai/early_access/paths/benchmarks/__init__.py,sha256=1jW0dJHHtYqlD1UkuUdb2Y1VozVbhkU35u8A6o999JQ,386
|
|
191
|
-
relationalai/early_access/paths/graph/__init__.py,sha256=M6hnFWHgua9x5vPQiRchWA4-S7vDqfroNJe9wQmipbg,290
|
|
192
|
-
relationalai/early_access/paths/path_algorithms/__init__.py,sha256=aYFP10fusL0gvpg6nMFK-8BJEzfqrHfqIjw4G1HE2-E,55
|
|
193
|
-
relationalai/early_access/paths/path_algorithms/find_paths/__init__.py,sha256=TLQQciGUFO-iFhf3-u0wXIxTe7sUySdZp4jygiG6u20,419
|
|
194
|
-
relationalai/early_access/paths/path_algorithms/one_sided_ball_repetition/__init__.py,sha256=tn_rROjhIqerDvpw-u4SxA1lNnqtDak0L_V0z2zLbsA,440
|
|
195
|
-
relationalai/early_access/paths/path_algorithms/one_sided_ball_upto/__init__.py,sha256=6Pc7qxXBhzL3Z8EZj1ywuwc7vBikfZgRxlTVY1OYrtg,400
|
|
196
|
-
relationalai/early_access/paths/path_algorithms/single/__init__.py,sha256=d-GVppBIo_sUhzb5qTd7yOGgpypbtQGisLD6snQEB0E,411
|
|
197
|
-
relationalai/early_access/paths/path_algorithms/two_sided_balls_repetition/__init__.py,sha256=3TsX-L3Y1A3_pS3GPp-dq3IueXkAyqN0kLqDt8HN10o,443
|
|
198
|
-
relationalai/early_access/paths/path_algorithms/two_sided_balls_upto/__init__.py,sha256=Yp9qze6KwrY_WWhpOYZpj6ryKAGemEuk8Iz87Js_-Jk,413
|
|
199
|
-
relationalai/early_access/paths/path_algorithms/usp/__init__.py,sha256=NvdBVAKcTqQILNaGXrQnX6VXAmvT5UC0nc-maO7LPZ4,384
|
|
200
|
-
relationalai/early_access/paths/rpq/__init__.py,sha256=wcA-ZVD1W_FwRvPx-q4x0X0J_SVfTnxe6NQjXhQlP3Y,398
|
|
201
|
-
relationalai/early_access/paths/utilities/__init__.py,sha256=j0ZAqOyJ3QzBKkZ51GmpRzoOgVNJRLqBWfEfQZe2W3A,49
|
|
202
|
-
relationalai/early_access/paths/utilities/iterators/__init__.py,sha256=HRO3elGRr5AmSk4lcBMkqN4cm6X7BHyx78Y1jAV0RTg,364
|
|
203
188
|
relationalai/early_access/rel/__init__.py,sha256=1Uf_eHjZcUZvaFoQ1nmMIcth4icRLxM3WsvCf99_Fj0,290
|
|
204
189
|
relationalai/early_access/rel/executor/__init__.py,sha256=viY7VTCVe3GVOpHlnVhrlXYDIAeIA01BcxtLtiaRaqI,285
|
|
205
190
|
relationalai/early_access/rel/rel_utils/__init__.py,sha256=FS5qahNNxiqev6DG0f66MaCnPuneWEysFAOZTWHwvL8,298
|
|
@@ -241,47 +226,108 @@ relationalai/experimental/pathfinder/pathfinder-v0.7.0.rel,sha256=0PguIKkQvvC35g
|
|
|
241
226
|
relationalai/experimental/pathfinder/rpq.py,sha256=xlukHsd_4xjtL28j2lFsDs7fXGnpb3SwTEzBRBlCd0U,10638
|
|
242
227
|
relationalai/experimental/pathfinder/transition.py,sha256=9ZLTbhQxVDG0v5ryHml8HcHj7xoVMEa-qyB2X4HZyKs,8422
|
|
243
228
|
relationalai/experimental/pathfinder/utils.py,sha256=qZ5A2ZovLmtey2EKE4PuC8YUZhoBapS6toJSowWdbLM,912
|
|
244
|
-
relationalai/experimental/paths/
|
|
245
|
-
relationalai/experimental/paths/
|
|
229
|
+
relationalai/experimental/paths/README.md,sha256=uLE2UQz4_Dfz1yyrS5PYwNLSqVCifmzDzcnvkd5iqHM,3407
|
|
230
|
+
relationalai/experimental/paths/__init__.py,sha256=gvFohgSq0HrFqI-Gt11A2yqR-i4Ks5We5H5LWOcTs2U,209
|
|
231
|
+
relationalai/experimental/paths/api.py,sha256=nstVFaupEuSGfM2k9rbew8m9PTYotYCJyzK2DkmC5Lg,4366
|
|
232
|
+
relationalai/experimental/paths/code_organization.md,sha256=M97e8ITGgjGRiEYEId5oufpe52MBQFbaXgn5HU73pJU,53
|
|
233
|
+
relationalai/experimental/paths/find_paths_via_automaton.py,sha256=gfWF4plAi5IwmyBpcCE3DrGl1X6uy-e-WPpqpHvD_Xg,2755
|
|
234
|
+
relationalai/experimental/paths/graph.py,sha256=2QTjyoiUo-cWk8HLgSqzgrOT8Uz5bkwhqzg3cWFcnuM,5141
|
|
235
|
+
relationalai/experimental/paths/product_graph.py,sha256=xJRsU5kDetPWlFAo1Jnu59mJPbhFOpY-VYzIdTBLMO0,3509
|
|
246
236
|
relationalai/experimental/paths/tree_agg.py,sha256=BGNHSPukqajaKqIoeH2ZzrTgNToVUSaTdvdIQJJr4oI,5320
|
|
237
|
+
relationalai/experimental/paths/benchmarks/__init__.py,sha256=0_vKpiNxeXb8uSa5uw3n6YYuUJmFIfblxEpFf6NlkcI,109
|
|
238
|
+
relationalai/experimental/paths/benchmarks/grid_graph.py,sha256=lAKE5bUE4V6zrSfAmuI3cRpoKr6rm-khMh1crtE-dU0,1050
|
|
239
|
+
relationalai/experimental/paths/examples/Movies.ipynb,sha256=kYT_vUC3f1n2BqbrWro3smXuDntn8LI1Htfmzcm02rk,1520322
|
|
240
|
+
relationalai/experimental/paths/examples/basic_example.py,sha256=y7plL5G8YwbwJOrJMWdxaQiVnpMACO4hHfl-aVQgT7Q,1029
|
|
241
|
+
relationalai/experimental/paths/examples/minimal_engine_warmup.py,sha256=1nTdg-Mek0OEu8Q4yeEl6gM0dl7BWMhdvLwUbpRg_fw,66
|
|
242
|
+
relationalai/experimental/paths/examples/movie_example.py,sha256=Xs-u9HVpIxy9ANnRVnn1hijLB8DdKBCkyfz2REIRwUI,2496
|
|
243
|
+
relationalai/experimental/paths/examples/paths_benchmark.py,sha256=mRJV6LOk9PAen-ig95Blj6silPDRo0mJR2MT5D9S-1w,3423
|
|
244
|
+
relationalai/experimental/paths/examples/paths_example.py,sha256=mNhryEve9suHtLVzWYvsNY7V7QaOhL1veckhgnspgOo,3472
|
|
245
|
+
relationalai/experimental/paths/examples/pattern_to_automaton.py,sha256=PoL2LpX9j3qOryUlx5pBwh3h7znB_MVoOgySE-x7QgM,737
|
|
246
|
+
relationalai/experimental/paths/examples/movies_data/actedin.csv,sha256=kOCGwAE1f6Sb-5Mud3QD0FzLyXabT69bHT-syEaMsfU,12100
|
|
247
|
+
relationalai/experimental/paths/examples/movies_data/directed.csv,sha256=jKxPQ_zIzR8HFXUiM1PR43rjgtYbGULKRyKOPPqP5C4,2225
|
|
248
|
+
relationalai/experimental/paths/examples/movies_data/follows.csv,sha256=_D6S8TDEIiJhkFQU5CJufsG0A0LzxshtTwivbLquP8g,339
|
|
249
|
+
relationalai/experimental/paths/examples/movies_data/movies.csv,sha256=is4o_BBAYaZ6WHqI99DYGfd8TxTA-JjAOJH1EayfB6M,3058
|
|
250
|
+
relationalai/experimental/paths/examples/movies_data/person.csv,sha256=7ONCsEh4WpSxb-8A0qB5hF_ceQSSshceNNtiaJm1uNo,3820
|
|
251
|
+
relationalai/experimental/paths/examples/movies_data/produced.csv,sha256=o2keGHImJhWee1PCBfCJOnPN-yo9_NkDJDWK8FizLm0,765
|
|
252
|
+
relationalai/experimental/paths/examples/movies_data/ratings.csv,sha256=-EXS_0N-cio5a1fbddN2fqKimMOliwyVAMnJjtLjOJo,790
|
|
253
|
+
relationalai/experimental/paths/examples/movies_data/wrote.csv,sha256=W6MhuMYTpqOnJjHJ5ZAeFK8HNvTF4y2ZGdLZPVP9ymo,492
|
|
254
|
+
relationalai/experimental/paths/path_algorithms/__init__.py,sha256=aYFP10fusL0gvpg6nMFK-8BJEzfqrHfqIjw4G1HE2-E,55
|
|
255
|
+
relationalai/experimental/paths/path_algorithms/find_paths.py,sha256=hANzfyeC8aBc2EdIdDp8TOt55y48fPhewlF5QOLS-OU,8580
|
|
256
|
+
relationalai/experimental/paths/path_algorithms/one_sided_ball_repetition.py,sha256=F_NryBbTSihSBcftPGDhhXpgBD7wVykpoFcqVZ5-RPA,678
|
|
257
|
+
relationalai/experimental/paths/path_algorithms/one_sided_ball_upto.py,sha256=FyE1u4QH8ivvPNFhJDO2volrcVslsUw88YPrjaZ0p8k,2657
|
|
258
|
+
relationalai/experimental/paths/path_algorithms/single.py,sha256=57WG7zw_-WJ1lgGlQbcnJDdnSgg1qVMg0tkxVzAgHsE,1705
|
|
259
|
+
relationalai/experimental/paths/path_algorithms/two_sided_balls_repetition.py,sha256=L5kefsWEm0jxhlYBJCflGy0FK9SOCc3-WSHPWrYLcrM,1100
|
|
260
|
+
relationalai/experimental/paths/path_algorithms/two_sided_balls_upto.py,sha256=AVVaGQKiCYHOB010e705lgLfVSRUa8oRzNt0pcedUcE,2947
|
|
261
|
+
relationalai/experimental/paths/path_algorithms/usp-old.py,sha256=dMxN6y_UHHOwZEXPjRCL9UT6abNxpH-ZrBWuuG37R0o,3869
|
|
262
|
+
relationalai/experimental/paths/path_algorithms/usp-tuple.py,sha256=65gW7sqxM2jE18ci0VEA-PUe-KXCLIGEyCbpxhs_5SE,4914
|
|
263
|
+
relationalai/experimental/paths/path_algorithms/usp.py,sha256=Rz-D7tAKKUAXAGJJG9grQ4eFDhfUL5r3IaBP_KmPD8k,3824
|
|
264
|
+
relationalai/experimental/paths/rpq/__init__.py,sha256=sQpi4FxwJSzw33AUvGBQ_KewZk625mVL6SqIsIFdGoI,146
|
|
265
|
+
relationalai/experimental/paths/rpq/automaton.py,sha256=SxmtqO8eSTXnznv7hcdxRHwRLLxweLK5bSuIlGDVC5E,21856
|
|
266
|
+
relationalai/experimental/paths/rpq/diagnostics.py,sha256=TSeD9I6aGUqeChitF-Khz3J0BKkNGJyV0b-wsVEsTQI,2238
|
|
267
|
+
relationalai/experimental/paths/rpq/filter.py,sha256=Fzn8ZnWV2uARsgGvXs87Xmu5cyNXmKRMorpthQvuNhY,7648
|
|
268
|
+
relationalai/experimental/paths/rpq/glushkov.py,sha256=Kd2wwCN9Rb5l0PswfuSmkr82G9PN1vBbfVjRVbljuTA,19515
|
|
269
|
+
relationalai/experimental/paths/rpq/rpq.py,sha256=cG18R0JmQMdWR-W1MYit1WYUgsfd-ElGdIazq8dtaGE,11370
|
|
270
|
+
relationalai/experimental/paths/rpq/transition.py,sha256=V92RdxYK-8RtbXlpj5lAM3UIGrMtrpPtr1F1BQEvigw,8386
|
|
271
|
+
relationalai/experimental/paths/tests/tests_limit_sp_max_length.py,sha256=xL9ZNz1g2PLWqPRTHNud1tIsW3awDgcz6Qsb3CruSSI,2841
|
|
272
|
+
relationalai/experimental/paths/tests/tests_limit_sp_multiple.py,sha256=LelFk9MExThirn56cetq8SN3Y8f8XM6G2I3lptPPEhg,4002
|
|
273
|
+
relationalai/experimental/paths/tests/tests_limit_sp_single.py,sha256=CT3bbFmHNsPtzcKMJiCsttzhVmaD9-79HCffpw40AMI,3193
|
|
274
|
+
relationalai/experimental/paths/tests/tests_limit_walks_multiple.py,sha256=5TJyM1-_VoW56FHbm2xkIhW3pkt4otHuR9XCNsCcL2s,2982
|
|
275
|
+
relationalai/experimental/paths/tests/tests_limit_walks_single.py,sha256=v75m0LSagcnGSIfGXB9H8gY9nQ9uzH4OnO68U5YpS44,3958
|
|
276
|
+
relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_multiple.py,sha256=uZufNZEPC4iqoXvRdy8UUzBXQ5rWvzSj53qTsWzeYE0,2164
|
|
277
|
+
relationalai/experimental/paths/tests/tests_one_sided_ball_repetition_single.py,sha256=xtZochMVHAR4Ek4n54H6XffjYzlWITj8a43oIQYxN_E,1854
|
|
278
|
+
relationalai/experimental/paths/tests/tests_one_sided_ball_upto_multiple.py,sha256=aVQW9eBOORgYwbI3eV2xFL6eRMLc0ulf9Qxy_CHZGCY,3652
|
|
279
|
+
relationalai/experimental/paths/tests/tests_one_sided_ball_upto_single.py,sha256=c6Bh7zo0_E6V5Q9zTnjtcEmBD1Kc-oeXpMLPYe4bqWQ,2304
|
|
280
|
+
relationalai/experimental/paths/tests/tests_single_paths.py,sha256=j3ArpEzXIBFWeVkwW0SB7tRe1jbljFHDteG17EiaB4w,3896
|
|
281
|
+
relationalai/experimental/paths/tests/tests_single_walks.py,sha256=HIZHth-hoqeHq5Gid6mUsSunX012QrRKEXeC4qAJGgA,5370
|
|
282
|
+
relationalai/experimental/paths/tests/tests_single_walks_undirected.py,sha256=3GmAIfD0eFIE1XB69Xtzx_7Q7SYyL7tnorFJ312LIbI,7472
|
|
283
|
+
relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_multiple.py,sha256=VWbMw3lNotmBfP1YGv3OaaNK31YJT4k_meUNBxeSLiE,3645
|
|
284
|
+
relationalai/experimental/paths/tests/tests_two_sided_balls_repetition_single.py,sha256=eVs_8buKI7ka8J4ZtmxuDPLOXduTF2pkyB0hufQtoPA,2520
|
|
285
|
+
relationalai/experimental/paths/tests/tests_two_sided_balls_upto_multiple.py,sha256=eVV4ULVcQYXeafElJkujqnzTFVy_ZU_pjCOxFYfDoIE,2473
|
|
286
|
+
relationalai/experimental/paths/tests/tests_two_sided_balls_upto_single.py,sha256=4qsfEWzoIogBl1BMIK2AnpmdEI7d623uu7gL9_GUsIQ,3522
|
|
287
|
+
relationalai/experimental/paths/tests/tests_usp_nsp_multiple.py,sha256=7tSce1e4y9vtQ9ous49cIpEhxsaAJc9AIG3ByH_YjTA,6636
|
|
288
|
+
relationalai/experimental/paths/tests/tests_usp_nsp_single.py,sha256=dqIxINDi87vfGhU5xqiQPQHH2Y4S-gikXe54D-Ar8TY,3158
|
|
289
|
+
relationalai/experimental/paths/utilities/__init__.py,sha256=j0ZAqOyJ3QzBKkZ51GmpRzoOgVNJRLqBWfEfQZe2W3A,49
|
|
290
|
+
relationalai/experimental/paths/utilities/iterators.py,sha256=X1nPMUZnYv7K_LzOFbqg3ZzA1xiM64LkFHZgF3SfqwY,521
|
|
291
|
+
relationalai/experimental/paths/utilities/prefix_sum.py,sha256=Et18NrHg2_pPU-gJrt-b3vpD0_lcbpktNwHbqg7VcP8,2361
|
|
292
|
+
relationalai/experimental/paths/utilities/utilities.py,sha256=OnqVdYIjdJZqobgK3v-fXqV8Ox5gnPh3hF7Vwq9clGI,212
|
|
247
293
|
relationalai/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
248
294
|
relationalai/loaders/csv.py,sha256=SyzLDQb46Y0QGdahxkp1_mII3NhxCkyCWNwQUielXXs,7743
|
|
249
295
|
relationalai/loaders/loader.py,sha256=FExfWHYyOPv_5f17N4wEIqRRWBPGfC13XvD791Ik93Y,7180
|
|
250
296
|
relationalai/loaders/types.py,sha256=w4kvPMpuRoz2ckOCakHrSvtXLetVsQHLi4V3up8hzig,619
|
|
251
|
-
relationalai/semantics/__init__.py,sha256=
|
|
297
|
+
relationalai/semantics/__init__.py,sha256=RTWxOsS6oCMO-T8z3-rjrhjejQIvErwlLxbVDKEpulE,911
|
|
252
298
|
relationalai/semantics/designs/query_builder/identify_by.md,sha256=AsbusFqT6YB44-iEGfuH4GVOxf1ZjxkpFovvWPMJHuI,4877
|
|
253
299
|
relationalai/semantics/devtools/__init__.py,sha256=hckMw2EtrVBiE71ABXX8bWPdI-6DV9uHqkhYG_nl8S4,85
|
|
254
300
|
relationalai/semantics/devtools/benchmark_lqp.py,sha256=btySKVtUUNBuPY-l6DrkbRNlvZcNXrKUqdvo_Hqsc98,21242
|
|
255
301
|
relationalai/semantics/devtools/compilation_manager.py,sha256=XBqG_nYWtK3s_J6MeCmkLqy3qm7l778zDAhH7DEO91g,11169
|
|
256
302
|
relationalai/semantics/devtools/extract_lqp.py,sha256=gxI3EvPUTPAkwgnkCKAkEm2vA6QkLfoM8AXXiVz0c34,3696
|
|
257
303
|
relationalai/semantics/internal/__init__.py,sha256=JXrpFaL-fdZrvKpWTEn1UoLXITOoTGnAYwmgeiglhSk,774
|
|
258
|
-
relationalai/semantics/internal/annotations.py,sha256=
|
|
259
|
-
relationalai/semantics/internal/internal.py,sha256=
|
|
260
|
-
relationalai/semantics/internal/snowflake.py,sha256=
|
|
304
|
+
relationalai/semantics/internal/annotations.py,sha256=PkrRN-gHO2ksh1hDKB1VVIB39dONvLdTd8_Y0rCR3fE,367
|
|
305
|
+
relationalai/semantics/internal/internal.py,sha256=xobU6wWXpgbcG1lQIO1fkgnSx7YzQ_Dqsqf7lBD9QuA,149008
|
|
306
|
+
relationalai/semantics/internal/snowflake.py,sha256=8D6WYDFKtt8R-sc9o1Oxgtl6Xwehs2Txw_lKNBid7UA,13467
|
|
261
307
|
relationalai/semantics/lqp/__init__.py,sha256=XgcQZxK-zz_LqPDVtwREhsIvjTuUIt4BZhIedCeMY-s,48
|
|
262
|
-
relationalai/semantics/lqp/builtins.py,sha256=
|
|
308
|
+
relationalai/semantics/lqp/builtins.py,sha256=IWRYJ1J-HGEQqBn8QVOyjZvgEiq6W9tZ0nBLdHz5wjA,576
|
|
263
309
|
relationalai/semantics/lqp/compiler.py,sha256=Nury1gPw_-Oi_mqT1-rhr13L4UmyIP2BGuotbuklQKA,949
|
|
264
|
-
relationalai/semantics/lqp/constructors.py,sha256=
|
|
265
|
-
relationalai/semantics/lqp/executor.py,sha256=
|
|
266
|
-
relationalai/semantics/lqp/intrinsics.py,sha256=
|
|
310
|
+
relationalai/semantics/lqp/constructors.py,sha256=iYpi6G8diBUNVITwj7-lfNob_kRqdM7eBTpx5uJcQ7s,2124
|
|
311
|
+
relationalai/semantics/lqp/executor.py,sha256=LoExKB3NuF9JdkUqsshAAfbQS3E_OwSyTD_R0wjd7zM,21728
|
|
312
|
+
relationalai/semantics/lqp/intrinsics.py,sha256=5d6z_C-5Anc97p4Jrlgt7og9gGei5N48EDRrnYXz4CA,842
|
|
267
313
|
relationalai/semantics/lqp/ir.py,sha256=DUw0ltul0AS9CRjntNlmllWTwXpxMyYg4iJ9t7NFYMA,1791
|
|
268
|
-
relationalai/semantics/lqp/model2lqp.py,sha256=
|
|
269
|
-
relationalai/semantics/lqp/passes.py,sha256=
|
|
314
|
+
relationalai/semantics/lqp/model2lqp.py,sha256=4uydEMJhdp0yRC5bIsanXRCiVicEtmavQ_cwsiW7ouA,35414
|
|
315
|
+
relationalai/semantics/lqp/passes.py,sha256=tK77lajdpvjs_lAFuBwd_A6XCXrwYK6k4Y_-jOHK2Yc,28431
|
|
270
316
|
relationalai/semantics/lqp/pragmas.py,sha256=FzzldrJEAZ1AIcEw6D-FfaVg3CoahRYgPCFo7xHfg1g,375
|
|
271
|
-
relationalai/semantics/lqp/primitives.py,sha256=
|
|
317
|
+
relationalai/semantics/lqp/primitives.py,sha256=9Hjow-Yp06jt0xatuUrH1dw0ErnzknIr9K0TB_AwdjU,11029
|
|
272
318
|
relationalai/semantics/lqp/result_helpers.py,sha256=oYpLoTBnzsiyOVIWA2rLMHlgs7P7BoEkqthQ2aMosnk,10123
|
|
273
319
|
relationalai/semantics/lqp/types.py,sha256=3TZ61ybwNV8lDyUMujZIWNFz3Fgn4uifsJb8ExfoMDg,4508
|
|
274
|
-
relationalai/semantics/lqp/utils.py,sha256=
|
|
320
|
+
relationalai/semantics/lqp/utils.py,sha256=iOoS-f8kyFjrgAnpK4cWDvAA-WmPgDRggSKUXm_JdTc,6317
|
|
275
321
|
relationalai/semantics/lqp/validators.py,sha256=YO_ciSgEVNILWUbkxIagKpIxI4oqV0fRSTO2Ok0rPJk,1526
|
|
276
|
-
relationalai/semantics/lqp/rewrite/__init__.py,sha256=
|
|
322
|
+
relationalai/semantics/lqp/rewrite/__init__.py,sha256=AR3JvxNMnUuGFcbu1qXEutnnYkex3XT64rSdjehjfR4,355
|
|
277
323
|
relationalai/semantics/lqp/rewrite/cdc.py,sha256=I6DeMOZScx-3UAVoSCMn9cuOgLzwdvJVKNwsgFa6R_k,10390
|
|
278
324
|
relationalai/semantics/lqp/rewrite/extract_common.py,sha256=sbihURqk4wtc1ekDWXWltq9LrO42XTLfOHl5D6nT5vw,18371
|
|
279
325
|
relationalai/semantics/lqp/rewrite/extract_keys.py,sha256=dSr5SVkYmrhiR0XPY5eRAnWD66dcZYgXdilXcERv634,18682
|
|
280
|
-
relationalai/semantics/lqp/rewrite/
|
|
326
|
+
relationalai/semantics/lqp/rewrite/function_annotations.py,sha256=otnxjxnVI3ByvPKdyG1SlGBaEKBej-9_M8Xc5GBtOeE,3523
|
|
281
327
|
relationalai/semantics/lqp/rewrite/quantify_vars.py,sha256=wYMEXzCW_D_Y_1rSLvuAAqw9KN1oIOn_vIMxELzRVb4,11568
|
|
282
328
|
relationalai/semantics/lqp/rewrite/splinter.py,sha256=oeDjP_F2PVLVexAKFn8w7CLtO9oy-R-tS2IOmzw_Ujk,3199
|
|
283
329
|
relationalai/semantics/metamodel/__init__.py,sha256=I-XqQAGycD0nKkKYvnF3G9d0QK_1LIM4xXICw8g8fBA,805
|
|
284
|
-
relationalai/semantics/metamodel/builtins.py,sha256=
|
|
330
|
+
relationalai/semantics/metamodel/builtins.py,sha256=gDM3DSKlZA1Orq7oqOn33Dm9-J3yHpDAe9Y2ea-zQsk,37940
|
|
285
331
|
relationalai/semantics/metamodel/compiler.py,sha256=XBsAnbFwgZ_TcRry6yXGWLyw_MaO2WJDp1EnC_ubhps,4525
|
|
286
332
|
relationalai/semantics/metamodel/dataflow.py,sha256=wfj1tARrR4yEAaTwUTrAcxEcz81VkUal4U_AX1esovk,3929
|
|
287
333
|
relationalai/semantics/metamodel/dependency.py,sha256=iJLx-w_zqde7CtbGcXxLxZBdUKZYl7AUykezPI9ccck,33926
|
|
@@ -299,94 +345,32 @@ relationalai/semantics/metamodel/rewrite/extract_nested_logicals.py,sha256=0aKMo
|
|
|
299
345
|
relationalai/semantics/metamodel/rewrite/flatten.py,sha256=W3zoUWY2UVOO_d-vyLZYb4y61wcM99ceJJFCuz_Rz-Q,27891
|
|
300
346
|
relationalai/semantics/metamodel/typer/__init__.py,sha256=E3ydmhWRdm-cAqWsNR24_Qd3NcwiHx8ElO2tzNysAXc,143
|
|
301
347
|
relationalai/semantics/metamodel/typer/checker.py,sha256=frY0gilDO6skbDiYFiIpDUOWyt9s9jAJsRBs848DcG0,19184
|
|
302
|
-
relationalai/semantics/metamodel/typer/typer.py,sha256=
|
|
303
|
-
relationalai/semantics/reasoners/__init__.py,sha256=
|
|
348
|
+
relationalai/semantics/metamodel/typer/typer.py,sha256=7kD5o08Q1bv9M5aUn9diDM5AfiuiRYi37xplqcVyLT8,62363
|
|
349
|
+
relationalai/semantics/reasoners/__init__.py,sha256=cLrGNKFX859EdPjk2n6MdYLvueaFtTEnfVYnBriQMfI,303
|
|
350
|
+
relationalai/semantics/reasoners/experimental/__init__.py,sha256=ZWXb3Oun7m_G2c3ijKnqxbEsAzTMVa7ciBXjdi4dCNI,144
|
|
304
351
|
relationalai/semantics/reasoners/graph/README.md,sha256=QgKEXTllp5PO-yK8oDfMx1PNTYF2uVoneMRKsWTY5GU,23953
|
|
305
352
|
relationalai/semantics/reasoners/graph/__init__.py,sha256=jSXR6J05SQZdjxQ5Y-ovqFqGTAXCOWeQDcvpfoBYgDA,1282
|
|
306
|
-
relationalai/semantics/reasoners/graph/core.py,sha256=
|
|
353
|
+
relationalai/semantics/reasoners/graph/core.py,sha256=_5bE-8JYKjfJYuRZ6fYqKKuvOxHc1ZwQwOFFWeWlgcM,397902
|
|
307
354
|
relationalai/semantics/reasoners/graph/design/beyond_demand_transform.md,sha256=Givh0W6B6Hlow6TpmK-8adpEYd8b3O_WmdgMOQIyKs0,55749
|
|
308
|
-
relationalai/semantics/reasoners/graph/paths/README.md,sha256=ydm6CzMN_vOOgq7a6_hBCiyGi3D6g5gxAbf4OXbQbDE,3433
|
|
309
|
-
relationalai/semantics/reasoners/graph/paths/__init__.py,sha256=oCoDJVg4moGe0tNMNeRn7XQqa1AIEZGlxAiaD5bBahg,211
|
|
310
|
-
relationalai/semantics/reasoners/graph/paths/api.py,sha256=nstVFaupEuSGfM2k9rbew8m9PTYotYCJyzK2DkmC5Lg,4366
|
|
311
|
-
relationalai/semantics/reasoners/graph/paths/code_organization.md,sha256=M97e8ITGgjGRiEYEId5oufpe52MBQFbaXgn5HU73pJU,53
|
|
312
|
-
relationalai/semantics/reasoners/graph/paths/find_paths_via_automaton.py,sha256=gfWF4plAi5IwmyBpcCE3DrGl1X6uy-e-WPpqpHvD_Xg,2755
|
|
313
|
-
relationalai/semantics/reasoners/graph/paths/graph.py,sha256=2QTjyoiUo-cWk8HLgSqzgrOT8Uz5bkwhqzg3cWFcnuM,5141
|
|
314
|
-
relationalai/semantics/reasoners/graph/paths/product_graph.py,sha256=xJRsU5kDetPWlFAo1Jnu59mJPbhFOpY-VYzIdTBLMO0,3509
|
|
315
|
-
relationalai/semantics/reasoners/graph/paths/benchmarks/__init__.py,sha256=0_vKpiNxeXb8uSa5uw3n6YYuUJmFIfblxEpFf6NlkcI,109
|
|
316
|
-
relationalai/semantics/reasoners/graph/paths/benchmarks/grid_graph.py,sha256=lAKE5bUE4V6zrSfAmuI3cRpoKr6rm-khMh1crtE-dU0,1050
|
|
317
|
-
relationalai/semantics/reasoners/graph/paths/examples/Movies.ipynb,sha256=kYT_vUC3f1n2BqbrWro3smXuDntn8LI1Htfmzcm02rk,1520322
|
|
318
|
-
relationalai/semantics/reasoners/graph/paths/examples/basic_example.py,sha256=_4uMa3A3yTZLUW4Pq93kt7h7QoPZw2N8ybiuwRm5rjA,1055
|
|
319
|
-
relationalai/semantics/reasoners/graph/paths/examples/minimal_engine_warmup.py,sha256=1nTdg-Mek0OEu8Q4yeEl6gM0dl7BWMhdvLwUbpRg_fw,66
|
|
320
|
-
relationalai/semantics/reasoners/graph/paths/examples/movie_example.py,sha256=Xs-u9HVpIxy9ANnRVnn1hijLB8DdKBCkyfz2REIRwUI,2496
|
|
321
|
-
relationalai/semantics/reasoners/graph/paths/examples/paths_benchmark.py,sha256=Yw3JdtUbuOnVbowmK0CZpGDorri4M_FSOBXIuHyPyms,3449
|
|
322
|
-
relationalai/semantics/reasoners/graph/paths/examples/paths_example.py,sha256=Mh3bFv-YBO_MceyO8TfGXZc1dbWIRqf71NCKlivNPQ8,3498
|
|
323
|
-
relationalai/semantics/reasoners/graph/paths/examples/pattern_to_automaton.py,sha256=KAbC_3Zjma_1RbS20scLyWMPWtRG-kyslHA0KqkLQzI,750
|
|
324
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/actedin.csv,sha256=kOCGwAE1f6Sb-5Mud3QD0FzLyXabT69bHT-syEaMsfU,12100
|
|
325
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/directed.csv,sha256=jKxPQ_zIzR8HFXUiM1PR43rjgtYbGULKRyKOPPqP5C4,2225
|
|
326
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/follows.csv,sha256=_D6S8TDEIiJhkFQU5CJufsG0A0LzxshtTwivbLquP8g,339
|
|
327
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/movies.csv,sha256=is4o_BBAYaZ6WHqI99DYGfd8TxTA-JjAOJH1EayfB6M,3058
|
|
328
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/person.csv,sha256=7ONCsEh4WpSxb-8A0qB5hF_ceQSSshceNNtiaJm1uNo,3820
|
|
329
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/produced.csv,sha256=o2keGHImJhWee1PCBfCJOnPN-yo9_NkDJDWK8FizLm0,765
|
|
330
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/ratings.csv,sha256=-EXS_0N-cio5a1fbddN2fqKimMOliwyVAMnJjtLjOJo,790
|
|
331
|
-
relationalai/semantics/reasoners/graph/paths/examples/movies_data/wrote.csv,sha256=W6MhuMYTpqOnJjHJ5ZAeFK8HNvTF4y2ZGdLZPVP9ymo,492
|
|
332
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/__init__.py,sha256=aYFP10fusL0gvpg6nMFK-8BJEzfqrHfqIjw4G1HE2-E,55
|
|
333
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/find_paths.py,sha256=hANzfyeC8aBc2EdIdDp8TOt55y48fPhewlF5QOLS-OU,8580
|
|
334
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/one_sided_ball_repetition.py,sha256=B6XzW1ykGd9mTfjjHsACprZ0EXAUCQbPPvWmqS7zLJY,691
|
|
335
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/one_sided_ball_upto.py,sha256=FyE1u4QH8ivvPNFhJDO2volrcVslsUw88YPrjaZ0p8k,2657
|
|
336
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/single.py,sha256=CGn1lqP_xvphgwCpSLQSC5D6TlYULtHHgz9bJ-nTBMg,1744
|
|
337
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/two_sided_balls_repetition.py,sha256=7nrOgoru5eULfHmEKJS8QqCdBHyk59MtmsuMbPup_xM,1113
|
|
338
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/two_sided_balls_upto.py,sha256=dIjxSebeTiZy-9Fmuc-5FqxSNoM0O3l_q3NP6e7Xq7Y,2973
|
|
339
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/usp-old.py,sha256=qrIgA4fpO77rAwYK80O3S4BerVLZO5_86rTAdUjJoEQ,3908
|
|
340
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/usp-tuple.py,sha256=UlR5wNbNGxzLhuIFGKrqd9nuMzG9JB3vH8AKyqfpjsw,4953
|
|
341
|
-
relationalai/semantics/reasoners/graph/paths/path_algorithms/usp.py,sha256=N0QOcvHAhlHYgBMglkY5CKr1mVGsOjFWJ3zM9TjI9EQ,3863
|
|
342
|
-
relationalai/semantics/reasoners/graph/paths/rpq/__init__.py,sha256=sQpi4FxwJSzw33AUvGBQ_KewZk625mVL6SqIsIFdGoI,146
|
|
343
|
-
relationalai/semantics/reasoners/graph/paths/rpq/automaton.py,sha256=SxmtqO8eSTXnznv7hcdxRHwRLLxweLK5bSuIlGDVC5E,21856
|
|
344
|
-
relationalai/semantics/reasoners/graph/paths/rpq/diagnostics.py,sha256=TSeD9I6aGUqeChitF-Khz3J0BKkNGJyV0b-wsVEsTQI,2238
|
|
345
|
-
relationalai/semantics/reasoners/graph/paths/rpq/filter.py,sha256=Fzn8ZnWV2uARsgGvXs87Xmu5cyNXmKRMorpthQvuNhY,7648
|
|
346
|
-
relationalai/semantics/reasoners/graph/paths/rpq/glushkov.py,sha256=Kd2wwCN9Rb5l0PswfuSmkr82G9PN1vBbfVjRVbljuTA,19515
|
|
347
|
-
relationalai/semantics/reasoners/graph/paths/rpq/rpq.py,sha256=cG18R0JmQMdWR-W1MYit1WYUgsfd-ElGdIazq8dtaGE,11370
|
|
348
|
-
relationalai/semantics/reasoners/graph/paths/rpq/transition.py,sha256=V92RdxYK-8RtbXlpj5lAM3UIGrMtrpPtr1F1BQEvigw,8386
|
|
349
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_limit_sp_max_length.py,sha256=itQrfVcaqx3OSMz4b8pX72uWDYn-tncdmtnBByqdONU,2867
|
|
350
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_limit_sp_multiple.py,sha256=FLzuLRk0SEpr5XxssOSIO78yun22Lz882lyuckCaBIA,4028
|
|
351
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_limit_sp_single.py,sha256=chaURQWupX97rUUKOYEDYo7KuYAjt5YRv6K0lXyEoyE,3219
|
|
352
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_limit_walks_multiple.py,sha256=xwWcsraa-rbXHC8r9PdSDyh49tHXsZ2QFedIIoGkUmQ,3008
|
|
353
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_limit_walks_single.py,sha256=rs3JPejBxDaaAHEybJ5qpc5FEj9WUCOAWCO8vX3CT8o,3984
|
|
354
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_one_sided_ball_repetition_multiple.py,sha256=8jtKvrqAm0An4fUhQme-0NRIAAe8XdrEhO5Ayp6iNUo,2190
|
|
355
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_one_sided_ball_repetition_single.py,sha256=hVgv793yvw19IoYisG-nWE3OgcOILTyIP8nIB5eWt-g,1880
|
|
356
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_one_sided_ball_upto_multiple.py,sha256=qIUVLlj-yu9x-Tp2Xdl8iVuv_ENoKKlW_Yc9yU-WpU4,3678
|
|
357
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_one_sided_ball_upto_single.py,sha256=fSrQ2UtitjIVY_uBrOQyDBGH7ihJK3eiS2RPzZEU9C8,2330
|
|
358
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_single_paths.py,sha256=ipfPT8sU22c2kn9bXAStgCcf23tCoPf4XV3OVAqYhkk,3922
|
|
359
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_single_walks.py,sha256=bNPxxOc3KbiA6viXD9qsFGyYZ4s8d34B2I8qLwr1B8g,5396
|
|
360
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_single_walks_undirected.py,sha256=aR_P9rvJJ2xJTMwo_PcXfCmWz6pv3Upw_LyrC3-D364,7498
|
|
361
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_two_sided_balls_repetition_multiple.py,sha256=56iblqEf4Erm7LMN6BOTuGjZl0yHIcrOmuJPhQdMWcQ,3671
|
|
362
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_two_sided_balls_repetition_single.py,sha256=x2JSUMzMnAo2iI44Y88OFaokhJYQb3Yv7hV1SzOtTUg,2546
|
|
363
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_two_sided_balls_upto_multiple.py,sha256=EH8QSZel0oQEIpUg3EuPpeyY_ZmrTYacIDAX8VyYfak,2499
|
|
364
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_two_sided_balls_upto_single.py,sha256=uVk-2LMABnhtSHucgJgiw0KuJe7Bl6WEcbqZIzkxX70,3548
|
|
365
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_usp_nsp_multiple.py,sha256=kArqdpS9TxxjTUqnRQGec2-eNELyUtlo1tRbfRaepn4,6662
|
|
366
|
-
relationalai/semantics/reasoners/graph/paths/tests/tests_usp_nsp_single.py,sha256=spMUFOpSGKSFm41nIgqPRLmlk7hOeQgTpHxVU1bCrD8,3184
|
|
367
|
-
relationalai/semantics/reasoners/graph/paths/utilities/__init__.py,sha256=j0ZAqOyJ3QzBKkZ51GmpRzoOgVNJRLqBWfEfQZe2W3A,49
|
|
368
|
-
relationalai/semantics/reasoners/graph/paths/utilities/iterators.py,sha256=X1nPMUZnYv7K_LzOFbqg3ZzA1xiM64LkFHZgF3SfqwY,521
|
|
369
|
-
relationalai/semantics/reasoners/graph/paths/utilities/prefix_sum.py,sha256=Et18NrHg2_pPU-gJrt-b3vpD0_lcbpktNwHbqg7VcP8,2361
|
|
370
|
-
relationalai/semantics/reasoners/graph/paths/utilities/utilities.py,sha256=OnqVdYIjdJZqobgK3v-fXqV8Ox5gnPh3hF7Vwq9clGI,212
|
|
371
355
|
relationalai/semantics/reasoners/graph/tests/README.md,sha256=XbauTzt6VA_YEOcrlZwsu4WOW5UoWV8M6F57wmxe5QU,1023
|
|
372
356
|
relationalai/semantics/reasoners/optimization/__init__.py,sha256=ceDYhGtFuewYGILKcjpuNHnTaCK2qc7pmJEsDWUfrEo,598
|
|
373
357
|
relationalai/semantics/reasoners/optimization/common.py,sha256=TVa9n9n97BwfMyYOTt895kkNiNkEX8WbaqReYM1PkuQ,1107
|
|
374
358
|
relationalai/semantics/reasoners/optimization/solvers_dev.py,sha256=BjFcEfmqmdxM6jnd34pt1AlkrdwHd_HapqpB2oIvNP4,24142
|
|
375
359
|
relationalai/semantics/reasoners/optimization/solvers_pb.py,sha256=ryNARpyph3uvr1dhWb7pNU3uuxuL1FLZZiTqFcr3Xf8,22148
|
|
376
360
|
relationalai/semantics/rel/__init__.py,sha256=pMlVTC_TbQ45mP1LpzwFBBgPxpKc0H3uJDvvDXEWzvs,55
|
|
377
|
-
relationalai/semantics/rel/builtins.py,sha256=
|
|
378
|
-
relationalai/semantics/rel/compiler.py,sha256=
|
|
379
|
-
relationalai/semantics/rel/executor.py,sha256=
|
|
361
|
+
relationalai/semantics/rel/builtins.py,sha256=kQToiELc4NnvCmXyFtu9CsGZNdTQtSzTB-nuyIfQcsM,1562
|
|
362
|
+
relationalai/semantics/rel/compiler.py,sha256=Sb2z_NlT96glclJ-w0wlpEH4RKBGEaCc_OOk3gORztk,42215
|
|
363
|
+
relationalai/semantics/rel/executor.py,sha256=v-yHl9R8AV0AA2xnm5YZDzue83pr8j2Q97Ky1MKkU70,17309
|
|
380
364
|
relationalai/semantics/rel/rel.py,sha256=9I_V6dQ83QRaLzq04Tt-KjBWhmNxNO3tFzeornBK4zc,15738
|
|
381
|
-
relationalai/semantics/rel/rel_utils.py,sha256=
|
|
382
|
-
relationalai/semantics/snowflake/__init__.py,sha256=
|
|
365
|
+
relationalai/semantics/rel/rel_utils.py,sha256=EH-NBROA4vIJXajLKniapt4Dxt7cXSqY4NEjD-wD8Mc,9566
|
|
366
|
+
relationalai/semantics/snowflake/__init__.py,sha256=wRvLb8sQ_SvoY6DEPKpMz6sdSJbrbgyQJVcHAPoSlAw,166
|
|
383
367
|
relationalai/semantics/sql/__init__.py,sha256=59uuKmQOFUzwlYwc7anSuwhQ45bJTYVmd9nOJXr9mQs,80
|
|
384
|
-
relationalai/semantics/sql/compiler.py,sha256=
|
|
368
|
+
relationalai/semantics/sql/compiler.py,sha256=FFcaZYg64bY3HzAk5JugmHced8h2H8eqG4MsIqoDqTM,129171
|
|
385
369
|
relationalai/semantics/sql/sql.py,sha256=7nUnm0RbHlOGSGQbnFrgzPYdmnoppifQ5jylR5Wtgcc,17122
|
|
386
370
|
relationalai/semantics/sql/executor/__init__.py,sha256=F3HqQPJVP9wgV3rkwI5jy1_QBCD_3qj2IGxbdT_pX9k,120
|
|
387
371
|
relationalai/semantics/sql/executor/duck_db.py,sha256=laI0jquMNNhj1pcFlaqxYAvvnCmSuvzzkibfjMz7liY,1909
|
|
388
372
|
relationalai/semantics/sql/executor/result_helpers.py,sha256=kVfspHHuzyq4SNklrtvhYte1wqRFzct-dAKin_lOmR4,3215
|
|
389
|
-
relationalai/semantics/sql/executor/snowflake.py,sha256=
|
|
373
|
+
relationalai/semantics/sql/executor/snowflake.py,sha256=ctbSssn91f6cV-_sPGizjkRn7vw_Lcqgd4Ai9S-DTFk,5912
|
|
390
374
|
relationalai/semantics/sql/rewrite/__init__.py,sha256=AT1WR0rqQHQ7E06NLoVym0zrZpBVPqK85uRFNJUTDp4,254
|
|
391
375
|
relationalai/semantics/sql/rewrite/denormalize.py,sha256=gPF0s1edthoHfuBIdS9-hnEaX5RFYBdtOlK5iAfB5CA,9040
|
|
392
376
|
relationalai/semantics/sql/rewrite/double_negation.py,sha256=QXynhjwfPW52Hpdo78VWPNk2TXe_mMTWYN470in51z8,1710
|
|
@@ -405,7 +389,7 @@ relationalai/semantics/std/std.py,sha256=Ql27y2Rs0d1kluktWi-t6_M_uYIxQUfO94GjlVf
|
|
|
405
389
|
relationalai/semantics/std/strings.py,sha256=Q_7kvx5dud6gppNURHOi4SMvgZNPRuWwEKDIPSEIOJI,2702
|
|
406
390
|
relationalai/semantics/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
391
|
relationalai/semantics/tests/logging.py,sha256=oJTrUS_Bq6WxqqO8QLtrjdkUB02Uu5erZ7FTl__-lNY,1432
|
|
408
|
-
relationalai/semantics/tests/test_snapshot_abstract.py,sha256=
|
|
392
|
+
relationalai/semantics/tests/test_snapshot_abstract.py,sha256=1xJmyRPlC6ywPytFUh8V-TFqndAzlo5v0XggRTJBcys,6131
|
|
409
393
|
relationalai/semantics/tests/test_snapshot_base.py,sha256=vlqqSyQf_IsDb7feDnkiHZKSCsJqDq0Ep4V3CKtKWns,466
|
|
410
394
|
relationalai/semantics/tests/utils.py,sha256=h4GPNCJGmAWvwskGWxc523BtFEd2ayff4zfBNHapoCo,1825
|
|
411
395
|
relationalai/std/__init__.py,sha256=U8-DpdOcxeGXVSf3LqJl9mSXKztNgB9iwropQcXp960,2178
|
|
@@ -453,8 +437,8 @@ frontend/debugger/dist/index.html,sha256=0wIQ1Pm7BclVV1wna6Mj8OmgU73B9rSEGPVX-Wo
|
|
|
453
437
|
frontend/debugger/dist/assets/favicon-Dy0ZgA6N.png,sha256=tPXOEhOrM4tJyZVJQVBO_yFgNAlgooY38ZsjyrFstgg,620
|
|
454
438
|
frontend/debugger/dist/assets/index-Cssla-O7.js,sha256=MxgIGfdKQyBWgufck1xYggQNhW5nj6BPjCF6Wleo-f0,298886
|
|
455
439
|
frontend/debugger/dist/assets/index-DlHsYx1V.css,sha256=21pZtAjKCcHLFjbjfBQTF6y7QmOic-4FYaKNmwdNZVE,60141
|
|
456
|
-
relationalai-0.12.
|
|
457
|
-
relationalai-0.12.
|
|
458
|
-
relationalai-0.12.
|
|
459
|
-
relationalai-0.12.
|
|
460
|
-
relationalai-0.12.
|
|
440
|
+
relationalai-0.12.7.dist-info/METADATA,sha256=mGeTSUrL68WnZM_zIElyoIkqwYGERi6HT6E0ur3mZxQ,2562
|
|
441
|
+
relationalai-0.12.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
442
|
+
relationalai-0.12.7.dist-info/entry_points.txt,sha256=fo_oLFJih3PUgYuHXsk7RnCjBm9cqRNR--ab6DgI6-0,88
|
|
443
|
+
relationalai-0.12.7.dist-info/licenses/LICENSE,sha256=pPyTVXFYhirkEW9VsnHIgUjT0Vg8_xsE6olrF5SIgpc,11343
|
|
444
|
+
relationalai-0.12.7.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
## pathfinder module
|
|
2
|
-
import warnings
|
|
3
|
-
|
|
4
|
-
from relationalai.semantics.reasoners.graph.paths.api import node, edge, path, optional, plus, star, union, match
|
|
5
|
-
|
|
6
|
-
__all__ = [
|
|
7
|
-
'node',
|
|
8
|
-
'edge',
|
|
9
|
-
'path',
|
|
10
|
-
'optional',
|
|
11
|
-
'plus',
|
|
12
|
-
'star',
|
|
13
|
-
'union',
|
|
14
|
-
'match',
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
warnings.warn(
|
|
18
|
-
"relationalai.early_access.paths.* is deprecated. "
|
|
19
|
-
"Please migrate to relationalai.semantics.reasoners.graph.paths.*",
|
|
20
|
-
DeprecationWarning,
|
|
21
|
-
stacklevel=2,
|
|
22
|
-
)
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import warnings
|
|
2
|
-
|
|
3
|
-
from relationalai.semantics.reasoners.graph.paths.api import path, star, match, node, union, node_filter
|
|
4
|
-
|
|
5
|
-
__all__ = ["path", "star", "match", "node", "union", "node_filter"]
|
|
6
|
-
|
|
7
|
-
warnings.warn(
|
|
8
|
-
"relationalai.early_access.paths.api is deprecated. "
|
|
9
|
-
"Please migrate to relationalai.semantics.reasoners.graph.paths.api",
|
|
10
|
-
DeprecationWarning,
|
|
11
|
-
stacklevel=2,
|
|
12
|
-
)
|