polyglot-sql 0.4.2__tar.gz → 0.4.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/Cargo.lock +5 -5
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/Cargo.toml +1 -1
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/PKG-INFO +1 -1
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/Cargo.toml +1 -1
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/fabric.rs +17 -37
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/mod.rs +886 -2
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/postgres.rs +27 -11
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/tsql.rs +610 -39
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/expressions.rs +24 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/function_registry.rs +20 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/generator.rs +247 -16
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/lineage.rs +298 -22
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/openlineage.rs +82 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/parser.rs +114 -13
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/scope.rs +111 -36
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/tokens.rs +3 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/traversal.rs +12 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/common/known_failures.rs +11 -2
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/common/test_runner.rs +34 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/transpilation.json +9 -9
- polyglot_sql-0.4.4/crates/polyglot-sql/tests/fabric_regression.rs +681 -0
- polyglot_sql-0.4.4/crates/polyglot-sql/tests/issue210_regression_test.rs +80 -0
- polyglot_sql-0.4.4/crates/polyglot-sql/tests/tsql_regression.rs +574 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/expr_types.rs +1 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_lineage.py +20 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_parse.py +20 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/python/polyglot_sql/__init__.py +3 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/python/polyglot_sql/__init__.pyi +1 -0
- polyglot_sql-0.4.2/crates/polyglot-sql/tests/fabric_regression.rs +0 -239
- polyglot_sql-0.4.2/crates/polyglot-sql/tests/tsql_regression.rs +0 -243
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/README.md +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/README.md +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/benches/in_list.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/benches/parsing.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/benches/rust_parsing.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/benches/transpile.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/examples/basic_usage.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/examples/bench_json.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/ast_transforms.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/builder.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/athena.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/bigquery.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/clickhouse.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/cockroachdb.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/databricks.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/datafusion.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/doris.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/dremio.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/drill.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/druid.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/duckdb.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/dune.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/exasol.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/generic.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/hive.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/materialize.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/mysql.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/oracle.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/presto.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/redshift.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/risingwave.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/singlestore.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/snowflake.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/solr.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/spark.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/sqlite.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/starrocks.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/tableau.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/teradata.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/tidb.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/dialects/trino.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/diff.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/error.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/function_catalog.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/helper.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/lib.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/annotate_types.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/canonicalize.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/eliminate_ctes.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/eliminate_joins.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/isolate_table_selects.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/mod.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/normalize.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/normalize_identifiers.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/optimize_joins.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/optimizer.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/pushdown_predicates.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/pushdown_projections.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/qualify_columns.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/qualify_tables.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/simplify.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/optimizer/subquery.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/planner.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/resolver.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/schema.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/time.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/transforms.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/trie.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/validation/tests.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/src/validation.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/analyze_failures.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/clickhouse_regression.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/common/mod.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/common/test_data.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_clickhouse_coverage.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_clickhouse_parser.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_dialect.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_dialect_tests.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/ddl.json +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/dml.json +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/functions.json +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/identity.json +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/operators.json +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/select.json +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/custom_fixtures/datafusion/types.json +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/deep_nesting_regression.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/dialect_matrix.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/error_handling.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/fabric_tpch_regression.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/identity_roundtrip.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/issue201_regression_test.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/postgres_sqlite_regression.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/snowflake_regression_test.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_compat.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_dialect_identity.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_identity.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_identity_detailed.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_parser.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_pretty.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_transpilation.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/sqlglot_transpile.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/tpch_transpile_stack.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql/tests/transform_regression.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-function-catalogs/Cargo.toml +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-function-catalogs/README.md +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-function-catalogs/src/clickhouse.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-function-catalogs/src/duckdb.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-function-catalogs/src/lib.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-function-catalogs/tools/clickhouse/extract_functions.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-function-catalogs/tools/duckdb/extract_functions.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/Cargo.toml +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/README.md +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/docs/api.md +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/docs/index.md +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/mkdocs.yml +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/annotate_types.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/dialects.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/diff.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/errors.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/expr.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/format.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/generate.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/helpers.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/lib.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/lineage.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/openlineage.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/optimize.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/parse.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/tokenize.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/transforms.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/transpile.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/types.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/src/validate.rs +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/conftest.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_compat.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_dialects.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_diff.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_expression.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_format.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_generate.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_optimize.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_transforms.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_transpile.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/tests/test_validate.py +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/crates/polyglot-sql-python/uv.lock +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/pyproject.toml +0 -0
- {polyglot_sql-0.4.2 → polyglot_sql-0.4.4}/python/polyglot_sql/py.typed +0 -0
|
@@ -605,7 +605,7 @@ dependencies = [
|
|
|
605
605
|
|
|
606
606
|
[[package]]
|
|
607
607
|
name = "polyglot-sql"
|
|
608
|
-
version = "0.4.
|
|
608
|
+
version = "0.4.4"
|
|
609
609
|
dependencies = [
|
|
610
610
|
"criterion",
|
|
611
611
|
"once_cell",
|
|
@@ -621,7 +621,7 @@ dependencies = [
|
|
|
621
621
|
|
|
622
622
|
[[package]]
|
|
623
623
|
name = "polyglot-sql-ffi"
|
|
624
|
-
version = "0.4.
|
|
624
|
+
version = "0.4.4"
|
|
625
625
|
dependencies = [
|
|
626
626
|
"cbindgen",
|
|
627
627
|
"polyglot-sql",
|
|
@@ -631,11 +631,11 @@ dependencies = [
|
|
|
631
631
|
|
|
632
632
|
[[package]]
|
|
633
633
|
name = "polyglot-sql-function-catalogs"
|
|
634
|
-
version = "0.4.
|
|
634
|
+
version = "0.4.4"
|
|
635
635
|
|
|
636
636
|
[[package]]
|
|
637
637
|
name = "polyglot-sql-python"
|
|
638
|
-
version = "0.4.
|
|
638
|
+
version = "0.4.4"
|
|
639
639
|
dependencies = [
|
|
640
640
|
"polyglot-sql",
|
|
641
641
|
"pyo3",
|
|
@@ -646,7 +646,7 @@ dependencies = [
|
|
|
646
646
|
|
|
647
647
|
[[package]]
|
|
648
648
|
name = "polyglot-sql-wasm"
|
|
649
|
-
version = "0.4.
|
|
649
|
+
version = "0.4.4"
|
|
650
650
|
dependencies = [
|
|
651
651
|
"console_error_panic_hook",
|
|
652
652
|
"js-sys",
|
|
@@ -106,7 +106,7 @@ thiserror = { workspace = true }
|
|
|
106
106
|
unicode-segmentation = { workspace = true }
|
|
107
107
|
stacker = { version = "0.1", optional = true }
|
|
108
108
|
ts-rs = { version = "12.0", features = ["serde-compat"], optional = true }
|
|
109
|
-
polyglot-sql-function-catalogs = { path = "../polyglot-sql-function-catalogs", version = "0.4.
|
|
109
|
+
polyglot-sql-function-catalogs = { path = "../polyglot-sql-function-catalogs", version = "0.4.4", optional = true, default-features = false }
|
|
110
110
|
|
|
111
111
|
[dev-dependencies]
|
|
112
112
|
pretty_assertions = "1.4"
|
|
@@ -46,6 +46,8 @@ impl DialectImpl for FabricDialect {
|
|
|
46
46
|
identifier_quote_style: IdentifierQuoteStyle::BRACKET,
|
|
47
47
|
dialect: Some(DialectType::Fabric),
|
|
48
48
|
null_ordering_supported: false,
|
|
49
|
+
aggregate_filter_supported: false,
|
|
50
|
+
cte_recursive_keyword_required: false,
|
|
49
51
|
..Default::default()
|
|
50
52
|
}
|
|
51
53
|
}
|
|
@@ -107,13 +109,7 @@ impl DialectImpl for FabricDialect {
|
|
|
107
109
|
// Handle DataType::Decimal specially BEFORE T-SQL transform
|
|
108
110
|
// because TSQL converts DECIMAL to NUMERIC, but Fabric wants DECIMAL
|
|
109
111
|
if let Expression::DataType(DataType::Decimal { precision, scale }) = &expr {
|
|
110
|
-
let name =
|
|
111
|
-
format!("DECIMAL({}, {})", p, s)
|
|
112
|
-
} else if let Some(p) = precision {
|
|
113
|
-
format!("DECIMAL({})", p)
|
|
114
|
-
} else {
|
|
115
|
-
"DECIMAL".to_string()
|
|
116
|
-
};
|
|
112
|
+
let name = Self::decimal_type_name(*precision, *scale);
|
|
117
113
|
return Ok(Expression::DataType(DataType::Custom { name }));
|
|
118
114
|
}
|
|
119
115
|
|
|
@@ -339,21 +335,9 @@ impl FabricDialect {
|
|
|
339
335
|
},
|
|
340
336
|
|
|
341
337
|
// DECIMAL -> DECIMAL (override TSQL which converts to NUMERIC)
|
|
342
|
-
DataType::Decimal { precision, scale } => {
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
name: format!("DECIMAL({}, {})", p, s),
|
|
346
|
-
}
|
|
347
|
-
} else if let Some(p) = &precision {
|
|
348
|
-
DataType::Custom {
|
|
349
|
-
name: format!("DECIMAL({})", p),
|
|
350
|
-
}
|
|
351
|
-
} else {
|
|
352
|
-
DataType::Custom {
|
|
353
|
-
name: "DECIMAL".to_string(),
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
}
|
|
338
|
+
DataType::Decimal { precision, scale } => DataType::Custom {
|
|
339
|
+
name: Self::decimal_type_name(precision, scale),
|
|
340
|
+
},
|
|
357
341
|
|
|
358
342
|
// JSON -> VARCHAR
|
|
359
343
|
DataType::Json => DataType::Custom {
|
|
@@ -506,21 +490,9 @@ impl FabricDialect {
|
|
|
506
490
|
|
|
507
491
|
// NUMERIC -> DECIMAL (override TSQL's conversion)
|
|
508
492
|
// Fabric uses DECIMAL, not NUMERIC
|
|
509
|
-
"NUMERIC" => {
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
name: format!("DECIMAL({}, {})", p, s),
|
|
513
|
-
}
|
|
514
|
-
} else if let Some(p) = precision {
|
|
515
|
-
DataType::Custom {
|
|
516
|
-
name: format!("DECIMAL({})", p),
|
|
517
|
-
}
|
|
518
|
-
} else {
|
|
519
|
-
DataType::Custom {
|
|
520
|
-
name: "DECIMAL".to_string(),
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
}
|
|
493
|
+
"DECIMAL" | "NUMERIC" => DataType::Custom {
|
|
494
|
+
name: Self::decimal_type_name(precision, scale),
|
|
495
|
+
},
|
|
524
496
|
|
|
525
497
|
// Pass through other custom types unchanged
|
|
526
498
|
_ => dt,
|
|
@@ -542,4 +514,12 @@ impl FabricDialect {
|
|
|
542
514
|
None => max, // Default to max if not specified
|
|
543
515
|
}
|
|
544
516
|
}
|
|
517
|
+
|
|
518
|
+
fn decimal_type_name(precision: Option<u32>, scale: Option<u32>) -> String {
|
|
519
|
+
match (precision, scale) {
|
|
520
|
+
(Some(p), Some(s)) => format!("DECIMAL({}, {})", p, s),
|
|
521
|
+
(Some(p), None) => format!("DECIMAL({})", p),
|
|
522
|
+
(None, _) => "DECIMAL".to_string(),
|
|
523
|
+
}
|
|
524
|
+
}
|
|
545
525
|
}
|