├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .git-blame-ignore-revs ├── .github ├── dco.yml └── workflows │ ├── db-bigquery.yaml │ ├── db-duckdb-wasm.yaml │ ├── db-duckdb.yaml │ ├── db-motherduck.yaml │ ├── db-mysql.yaml │ ├── db-postgres.yaml │ ├── db-presto.yaml │ ├── db-publisher.yaml │ ├── db-snowflake.yaml │ ├── db-trino.yaml │ ├── main.yaml │ ├── prerelease.yaml │ ├── release.yaml │ └── run-tests.yaml ├── .gitignore ├── .node-version ├── .npmrc ├── .prettierrc.js ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CONTEXT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── code_of_conduct.md ├── default.nix ├── demo ├── malloy-demo-bq-cli │ └── README.md ├── malloy-demo-composer │ └── README.md └── malloy-duckdb-wasm │ └── README.md ├── developing.md ├── jest.config.ts ├── lerna.json ├── package.json ├── packages ├── malloy-db-bigquery │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── bigquery.spec.ts │ │ ├── bigquery_connection.ts │ │ └── index.ts │ └── tsconfig.json ├── malloy-db-duckdb │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── duckdb.spec.ts │ │ ├── duckdb_common.ts │ │ ├── duckdb_connection.ts │ │ ├── duckdb_wasm_connection.spec.ts │ │ ├── duckdb_wasm_connection.ts │ │ ├── duckdb_wasm_connection_browser.ts │ │ ├── duckdb_wasm_connection_node.ts │ │ └── index.ts │ └── tsconfig.json ├── malloy-db-mysql │ ├── .npmignore │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── mysql.s_p_e_c_dont_run.ts │ │ └── mysql_connection.ts │ └── tsconfig.json ├── malloy-db-postgres │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── postgres.spec.ts │ │ └── postgres_connection.ts │ └── tsconfig.json ├── malloy-db-publisher │ ├── openapitools.json │ ├── package.json │ ├── publisher-api-doc.yaml │ ├── scripts │ │ └── patch-common.js │ ├── src │ │ ├── client │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── .openapi-generator-ignore │ │ │ ├── .openapi-generator │ │ │ │ ├── FILES │ │ │ │ └── VERSION │ │ │ ├── api.ts │ │ │ ├── base.ts │ │ │ ├── common.ts │ │ │ ├── configuration.ts │ │ │ ├── git_push.sh │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── publisher_connection.integration.spec.ts │ │ ├── publisher_connection.ts │ │ └── publisher_connection.unit.spec.ts │ └── tsconfig.json ├── malloy-db-snowflake │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── snowflake_connection.spec.ts │ │ ├── snowflake_connection.ts │ │ ├── snowflake_executor.spec.ts │ │ └── snowflake_executor.ts │ └── tsconfig.json ├── malloy-db-trino │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── test.nonspec.ts │ │ ├── trino_connection.spec.ts │ │ ├── trino_connection.ts │ │ └── trino_executor.ts │ └── tsconfig.json ├── malloy-filter │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── boolean_filter_expression.ts │ │ ├── clause_utils.ts │ │ ├── filter_interface.ts │ │ ├── grammars │ │ │ ├── fexpr_number.ne │ │ │ ├── fexpr_string.ne │ │ │ └── ftemporal.ne │ │ ├── index.ts │ │ ├── nearley_parse.ts │ │ ├── number_filter_expression.ts │ │ ├── string_filter_expression.ts │ │ ├── temporal_filter_expression.ts │ │ └── test │ │ │ ├── fbool.spec.ts │ │ │ ├── fnumber.spec.ts │ │ │ ├── fstring.spec.ts │ │ │ └── ftemporal.spec.ts │ └── tsconfig.json ├── malloy-interfaces │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── scripts │ │ └── hacky_gen_types.ts │ ├── src │ │ ├── index.ts │ │ ├── nest_unions.spec.ts │ │ ├── nest_unions.ts │ │ ├── reserved_words.ts │ │ ├── to_malloy.ts │ │ ├── types.ts │ │ └── util.ts │ ├── thrift │ │ └── malloy.thrift │ └── tsconfig.json ├── malloy-malloy-sql │ ├── .gitignore │ ├── .npmignore │ ├── package.json │ ├── src │ │ ├── grammar │ │ │ ├── malloySQL.pegjs │ │ │ ├── malloySQLSQL.pegjs │ │ │ └── test │ │ │ │ └── parse.spec.ts │ │ ├── index.ts │ │ ├── malloySQLErrors.ts │ │ ├── malloySQLParser.ts │ │ ├── malloySQLSQLParser.ts │ │ └── types.ts │ └── tsconfig.json ├── malloy-query-builder │ ├── DEVELOPING.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── expects.ts │ │ ├── flights_model.ts │ │ ├── index.ts │ │ ├── query-ast.spec.ts │ │ └── query-ast.ts │ └── tsconfig.json ├── malloy-render │ ├── .gitignore │ ├── .npmignore │ ├── .storybook │ │ ├── main.ts │ │ ├── malloy-stories-indexer.ts │ │ ├── manager-head.html │ │ ├── manager.ts │ │ ├── preview-head.html │ │ ├── preview.ts │ │ ├── registered_data.json │ │ └── theme.ts │ ├── API_MIGRATION.md │ ├── CONTEXT.md │ ├── DEVELOPING.md │ ├── README.md │ ├── docs │ │ ├── plans │ │ │ └── field-creation-analysis.md │ │ ├── plugin-api-reference.md │ │ ├── plugin-quick-start.md │ │ ├── plugin-system.md │ │ ├── renderer_tag_cheatsheet.md │ │ └── renderer_tags_overview.md │ ├── package.json │ ├── src │ │ ├── api │ │ │ ├── json-schema-types.ts │ │ │ ├── malloy-renderer.ts │ │ │ ├── malloy-viz.tsx │ │ │ ├── plugin-types.ts │ │ │ └── types.ts │ │ ├── component │ │ │ ├── bar-chart │ │ │ │ ├── generate-bar_chart-vega-spec.ts │ │ │ │ ├── get-bar_chart-settings.ts │ │ │ │ └── get-custom-tooltips-entries.ts │ │ │ ├── chart │ │ │ │ ├── chart-dev-tool.tsx │ │ │ │ ├── chart-layout-settings.ts │ │ │ │ ├── chart-v2.tsx │ │ │ │ ├── chart.css │ │ │ │ ├── chart.tsx │ │ │ │ ├── debug_icon.tsx │ │ │ │ └── default-chart-tooltip.tsx │ │ │ ├── dashboard │ │ │ │ ├── dashboard.css │ │ │ │ └── dashboard.tsx │ │ │ ├── default-settings.ts │ │ │ ├── error-message │ │ │ │ ├── error-message.css │ │ │ │ └── error-message.tsx │ │ │ ├── legacy-charts │ │ │ │ └── legacy_chart.tsx │ │ │ ├── malloy-modal │ │ │ │ └── malloy-modal.tsx │ │ │ ├── render-image.tsx │ │ │ ├── render-link.tsx │ │ │ ├── render-list.tsx │ │ │ ├── render-numeric-field.ts │ │ │ ├── render-result-metadata.ts │ │ │ ├── render-time.ts │ │ │ ├── render.css │ │ │ ├── render.tsx │ │ │ ├── renderer │ │ │ │ ├── apply-renderer.tsx │ │ │ │ └── plugin-render-container.tsx │ │ │ ├── result-context.ts │ │ │ ├── result-store │ │ │ │ └── result-store.ts │ │ │ ├── table │ │ │ │ ├── pivot-cells.tsx │ │ │ │ ├── pivot-header.tsx │ │ │ │ ├── pivot-utils.ts │ │ │ │ ├── table-context.ts │ │ │ │ ├── table-layout.ts │ │ │ │ ├── table.css │ │ │ │ ├── table.tsx │ │ │ │ └── transpose-table.tsx │ │ │ ├── tag-utils.ts │ │ │ ├── tooltip │ │ │ │ ├── tooltip.css │ │ │ │ └── tooltip.tsx │ │ │ ├── types.ts │ │ │ ├── util.ts │ │ │ ├── vega-types.ts │ │ │ └── vega │ │ │ │ ├── base-vega-config.ts │ │ │ │ ├── measure-axis.ts │ │ │ │ ├── merge-vega-configs.ts │ │ │ │ ├── vega-chart.tsx │ │ │ │ ├── vega-expr-addons.ts │ │ │ │ └── vega-utils.ts │ │ ├── data_tree │ │ │ ├── cells │ │ │ │ ├── atomic.ts │ │ │ │ ├── base.ts │ │ │ │ ├── index.ts │ │ │ │ └── nest.ts │ │ │ ├── drilling.ts │ │ │ ├── fields │ │ │ │ ├── atomic.ts │ │ │ │ ├── base.ts │ │ │ │ ├── index.ts │ │ │ │ └── nest.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── drill.spec.ts │ │ ├── fonts │ │ │ └── google-sans-regular-400.woff2 │ │ ├── html │ │ │ ├── area_sparkline.ts │ │ │ ├── bar_chart.ts │ │ │ ├── bar_sparkline.ts │ │ │ ├── boolean.ts │ │ │ ├── bytes.ts │ │ │ ├── cartesian_chart.ts │ │ │ ├── chart.ts │ │ │ ├── column_sparkline.ts │ │ │ ├── container.ts │ │ │ ├── currency.ts │ │ │ ├── dashboard.ts │ │ │ ├── data_styles.ts │ │ │ ├── data_volume.ts │ │ │ ├── date.ts │ │ │ ├── duration.ts │ │ │ ├── fonts │ │ │ │ └── woff2.d.ts │ │ │ ├── html_view.ts │ │ │ ├── image.ts │ │ │ ├── index.ts │ │ │ ├── json.ts │ │ │ ├── line_chart.ts │ │ │ ├── link.ts │ │ │ ├── list.ts │ │ │ ├── list_detail.ts │ │ │ ├── main_renderer_factory.ts │ │ │ ├── number.ts │ │ │ ├── percent.ts │ │ │ ├── point_map.ts │ │ │ ├── renderer.ts │ │ │ ├── renderer_factory.ts │ │ │ ├── renderer_types.ts │ │ │ ├── scatter_chart.ts │ │ │ ├── segment_map.ts │ │ │ ├── shape_map.ts │ │ │ ├── sparkline.ts │ │ │ ├── state_codes.ts │ │ │ ├── table.ts │ │ │ ├── text.ts │ │ │ ├── unsupported.ts │ │ │ ├── utils.ts │ │ │ └── vega_spec.ts │ │ ├── index.ts │ │ ├── plugins │ │ │ ├── bar-chart │ │ │ │ ├── bar-chart-plugin.tsx │ │ │ │ ├── bar-chart-settings.ts │ │ │ │ ├── generate-bar_chart-vega-spec.ts │ │ │ │ ├── get-bar_chart-settings.ts │ │ │ │ └── settings-to-tag.ts │ │ │ ├── dummy-dom-plugin.ts │ │ │ ├── dummy-plugin.tsx │ │ │ ├── error │ │ │ │ └── error-plugin.tsx │ │ │ ├── index.ts │ │ │ └── line-chart │ │ │ │ ├── generate-line_chart-vega-spec.ts │ │ │ │ ├── get-line_chart-settings.ts │ │ │ │ ├── line-chart-plugin.spec.ts │ │ │ │ ├── line-chart-plugin.tsx │ │ │ │ ├── line-chart-settings.ts │ │ │ │ └── settings-to-tag.ts │ │ ├── registry │ │ │ └── types.ts │ │ ├── render-field-metadata.ts │ │ ├── stories │ │ │ ├── About.mdx │ │ │ ├── bar_chart.stories.malloy │ │ │ ├── dashboard.stories.malloy │ │ │ ├── image.stories.malloy │ │ │ ├── legacy-basic.stories.malloy │ │ │ ├── legacy-charts.stories.malloy │ │ │ ├── line_chart_defaults.stories.malloy │ │ │ ├── line_charts.stories.malloy │ │ │ ├── link.stories.malloy │ │ │ ├── list.stories.malloy │ │ │ ├── plugins.stories.malloy │ │ │ ├── scroll-override.stories.malloy │ │ │ ├── scroll-override.stories.ts │ │ │ ├── static │ │ │ │ ├── data │ │ │ │ │ ├── logos.csv │ │ │ │ │ ├── missing_data.csv │ │ │ │ │ └── products.parquet │ │ │ │ ├── favicon.ico │ │ │ │ └── malloy-sparks.png │ │ │ ├── tables.stories.malloy │ │ │ ├── themes.css │ │ │ ├── themes.malloy │ │ │ ├── themes.stories.ts │ │ │ ├── util.ts │ │ │ ├── vega-config-override.malloy │ │ │ ├── vega-config-override.stories.ts │ │ │ ├── vite.d.ts │ │ │ └── wrapped-table.stories.ts │ │ ├── types │ │ │ └── solid-js.d.ts │ │ ├── util.spec.ts │ │ ├── util.ts │ │ └── vega.d.ts │ ├── test │ │ └── mocks │ │ │ └── cssMock.js │ ├── tsconfig.json │ ├── vite.config.base.mts │ └── vite.config.mts ├── malloy-syntax-highlight │ ├── .github │ │ └── README.md │ ├── DEVELOPING.md │ ├── README.md │ ├── grammars │ │ ├── malloy-notebook │ │ │ ├── malloy-notebook-language.json │ │ │ └── malloy-notebook.tmGrammar.json │ │ ├── malloy-sql │ │ │ ├── malloy-sql-language.json │ │ │ └── malloy-sql.tmGrammar.json │ │ └── malloy │ │ │ ├── malloy-language.json │ │ │ ├── malloy.monarch.ts │ │ │ ├── malloy.spec.ts │ │ │ ├── malloy.test.ts │ │ │ ├── malloy.tmGrammar.json │ │ │ ├── malloyTestInput.ts │ │ │ └── tokenizations │ │ │ └── darkPlus.ts │ ├── jest.config.js │ ├── karma.conf.js │ ├── package.json │ ├── scripts │ │ ├── generateLanguageTokenizationFile.ts │ │ ├── generateMonarchGrammar.ts │ │ └── generateMonarchTheme.ts │ ├── test │ │ ├── config │ │ │ ├── monaco │ │ │ │ └── malloyDarkPlusConfig.ts │ │ │ └── textmate │ │ │ │ └── malloyDarkPlusConfig.ts │ │ ├── generateMonarchTokenizations.ts │ │ ├── generateTextmateTokenizations.ts │ │ ├── testUtils.ts │ │ └── visual │ │ │ ├── index.html │ │ │ └── malloy.tmGrammar.json │ ├── themes │ │ ├── monaco │ │ │ ├── darkPlus.ts │ │ │ └── lightPlus.ts │ │ └── textmate │ │ │ ├── dark_plus.json │ │ │ ├── dark_vs.json │ │ │ ├── light_plus.json │ │ │ └── light_vs.json │ └── tsconfig.json ├── malloy-tag │ ├── CONTEXT.md │ ├── README.md │ ├── package.json │ ├── scripts │ │ └── build_parser.js │ ├── src │ │ ├── MalloyTag.g4 │ │ ├── index.ts │ │ ├── tags.spec.ts │ │ ├── tags.ts │ │ ├── util.spec.ts │ │ └── util.ts │ └── tsconfig.json └── malloy │ ├── .npmignore │ ├── CONTEXT.md │ ├── README.md │ ├── package.json │ ├── src │ ├── annotation.ts │ ├── api │ │ ├── asynchronous.spec.ts │ │ ├── asynchronous.ts │ │ ├── connection.ts │ │ ├── core.ts │ │ ├── index.ts │ │ ├── sessioned.spec.ts │ │ ├── sessioned.ts │ │ ├── stateless.spec.ts │ │ ├── stateless.ts │ │ └── util.ts │ ├── connection │ │ ├── base_connection.ts │ │ ├── index.ts │ │ └── types.ts │ ├── connection_utils.ts │ ├── dialect │ │ ├── README.md │ │ ├── dialect.ts │ │ ├── dialect_map.ts │ │ ├── duckdb │ │ │ ├── dialect_functions.ts │ │ │ ├── duckdb.ts │ │ │ ├── function_overrides.ts │ │ │ └── index.ts │ │ ├── functions │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── malloy_standard_functions.ts │ │ │ └── util.ts │ │ ├── index.ts │ │ ├── mysql │ │ │ ├── dialect_functions.ts │ │ │ ├── function_overrides.ts │ │ │ ├── index.ts │ │ │ └── mysql.ts │ │ ├── pg_impl.ts │ │ ├── postgres │ │ │ ├── dialect_functions.ts │ │ │ ├── function_overrides.ts │ │ │ ├── index.ts │ │ │ └── postgres.ts │ │ ├── snowflake │ │ │ ├── dialect_functions.ts │ │ │ ├── function_overrides.ts │ │ │ ├── index.ts │ │ │ └── snowflake.ts │ │ ├── standardsql │ │ │ ├── dialect_functions.ts │ │ │ ├── function_overrides.ts │ │ │ ├── index.ts │ │ │ └── standardsql.ts │ │ ├── tiny_parser.ts │ │ └── trino │ │ │ ├── dialect_functions.ts │ │ │ ├── function_overrides.ts │ │ │ ├── index.ts │ │ │ └── trino.ts │ ├── doc │ │ ├── adding-error-explanations.md │ │ ├── ast.md │ │ ├── experimental.md │ │ ├── expr.md │ │ ├── fielddef.md │ │ ├── logging.md │ │ ├── null-safe.md │ │ ├── param-internal.md │ │ ├── structdef.md │ │ ├── typedesc.md │ │ └── ungroup-check-explain.md │ ├── index.ts │ ├── lang │ │ ├── CONTEXT.md │ │ ├── ast │ │ │ ├── ast-utils.ts │ │ │ ├── error-factory.ts │ │ │ ├── expressions │ │ │ │ ├── apply.ts │ │ │ │ ├── binary-boolean.ts │ │ │ │ ├── binary-numeric.ts │ │ │ │ ├── boolean.ts │ │ │ │ ├── case.ts │ │ │ │ ├── constant-expression.ts │ │ │ │ ├── expr-add-sub.ts │ │ │ │ ├── expr-aggregate-function.ts │ │ │ │ ├── expr-alternation-tree.ts │ │ │ │ ├── expr-array-literal.ts │ │ │ │ ├── expr-asymmetric.ts │ │ │ │ ├── expr-avg.ts │ │ │ │ ├── expr-cast.ts │ │ │ │ ├── expr-coalesce.ts │ │ │ │ ├── expr-compare.ts │ │ │ │ ├── expr-count-distinct.ts │ │ │ │ ├── expr-count.ts │ │ │ │ ├── expr-filter-expr.ts │ │ │ │ ├── expr-func.ts │ │ │ │ ├── expr-granular-time.ts │ │ │ │ ├── expr-id-reference.ts │ │ │ │ ├── expr-logical-op.ts │ │ │ │ ├── expr-max.ts │ │ │ │ ├── expr-min.ts │ │ │ │ ├── expr-minus.ts │ │ │ │ ├── expr-mul-div.ts │ │ │ │ ├── expr-not.ts │ │ │ │ ├── expr-now.ts │ │ │ │ ├── expr-null.ts │ │ │ │ ├── expr-number.ts │ │ │ │ ├── expr-parens.ts │ │ │ │ ├── expr-props.ts │ │ │ │ ├── expr-record-literal.ts │ │ │ │ ├── expr-regex.ts │ │ │ │ ├── expr-string.ts │ │ │ │ ├── expr-sum.ts │ │ │ │ ├── expr-time-extract.ts │ │ │ │ ├── expr-time.ts │ │ │ │ ├── expr-ungroup.ts │ │ │ │ ├── for-range.ts │ │ │ │ ├── function-ordering.ts │ │ │ │ ├── grouped_by.ts │ │ │ │ ├── partial-compare.ts │ │ │ │ ├── partition_by.ts │ │ │ │ ├── pick-when.ts │ │ │ │ ├── range.ts │ │ │ │ ├── time-frame.ts │ │ │ │ ├── time-literal.ts │ │ │ │ └── unary.ts │ │ │ ├── field-space │ │ │ │ ├── ast-view-field.ts │ │ │ │ ├── column-space-field.ts │ │ │ │ ├── def-space.ts │ │ │ │ ├── dynamic-space.ts │ │ │ │ ├── include-utils.ts │ │ │ │ ├── index-field-space.ts │ │ │ │ ├── ir-view-field.ts │ │ │ │ ├── join-space-field.ts │ │ │ │ ├── parameter-space.ts │ │ │ │ ├── passthrough-space.ts │ │ │ │ ├── permissive-space.ts │ │ │ │ ├── project-field-space.ts │ │ │ │ ├── query-input-space.ts │ │ │ │ ├── query-spaces.ts │ │ │ │ ├── reference-field.ts │ │ │ │ ├── refine-from-space-field.ts │ │ │ │ ├── refined-space.ts │ │ │ │ ├── rename-space-field.ts │ │ │ │ ├── static-space.ts │ │ │ │ ├── struct-space-field-base.ts │ │ │ │ └── view-field.ts │ │ │ ├── index.ts │ │ │ ├── parameters │ │ │ │ ├── argument.ts │ │ │ │ └── has-parameter.ts │ │ │ ├── query-builders │ │ │ │ ├── index-builder.ts │ │ │ │ ├── partial-builder.ts │ │ │ │ ├── project-builder.ts │ │ │ │ └── reduce-builder.ts │ │ │ ├── query-elements │ │ │ │ ├── anonymous-query.ts │ │ │ │ ├── query-arrow.ts │ │ │ │ ├── query-base.ts │ │ │ │ ├── query-head-struct.ts │ │ │ │ ├── query-raw.ts │ │ │ │ ├── query-reference.ts │ │ │ │ └── query-refine.ts │ │ │ ├── query-items │ │ │ │ ├── field-declaration.ts │ │ │ │ ├── field-references.ts │ │ │ │ └── typecheck_utils.ts │ │ │ ├── query-properties │ │ │ │ ├── aggregate.ts │ │ │ │ ├── calculate.ts │ │ │ │ ├── declare-fields.ts │ │ │ │ ├── drill.ts │ │ │ │ ├── extend.ts │ │ │ │ ├── filters.ts │ │ │ │ ├── group-by.ts │ │ │ │ ├── indexing.ts │ │ │ │ ├── limit.ts │ │ │ │ ├── nest.ts │ │ │ │ ├── nests.ts │ │ │ │ ├── ordering.ts │ │ │ │ ├── project-statement.ts │ │ │ │ ├── qop-desc.ts │ │ │ │ └── sampling.ts │ │ │ ├── query-utils.ts │ │ │ ├── source-elements │ │ │ │ ├── composite-source.ts │ │ │ │ ├── named-source.ts │ │ │ │ ├── query-source.ts │ │ │ │ ├── refined-source.ts │ │ │ │ ├── source.ts │ │ │ │ ├── sql-source.ts │ │ │ │ └── table-source.ts │ │ │ ├── source-properties │ │ │ │ ├── dimensions.ts │ │ │ │ ├── field-list-edit.ts │ │ │ │ ├── join.ts │ │ │ │ ├── measures.ts │ │ │ │ ├── primary-key.ts │ │ │ │ ├── renames.ts │ │ │ │ ├── timezone-statement.ts │ │ │ │ ├── view-field-declaration.ts │ │ │ │ └── views.ts │ │ │ ├── source-query-elements │ │ │ │ ├── include-item.ts │ │ │ │ ├── source-query-element.ts │ │ │ │ ├── sq-arrow.ts │ │ │ │ ├── sq-compose.ts │ │ │ │ ├── sq-extend.ts │ │ │ │ ├── sq-reference.ts │ │ │ │ ├── sq-refine.ts │ │ │ │ └── sq-source.ts │ │ │ ├── sql-elements │ │ │ │ └── sql-string.ts │ │ │ ├── statements │ │ │ │ ├── define-query.ts │ │ │ │ ├── define-source.ts │ │ │ │ └── import-statement.ts │ │ │ ├── time-utils.ts │ │ │ ├── typedesc-utils.ts │ │ │ ├── types │ │ │ │ ├── annotation-elements.ts │ │ │ │ ├── binary_operators.ts │ │ │ │ ├── definition-list.ts │ │ │ │ ├── dialect-name-space.ts │ │ │ │ ├── document-compile-result.ts │ │ │ │ ├── expr-result.ts │ │ │ │ ├── expr-value.ts │ │ │ │ ├── expression-def.ts │ │ │ │ ├── field-collection-member.ts │ │ │ │ ├── field-prop-statement.ts │ │ │ │ ├── field-space.ts │ │ │ │ ├── global-name-space.ts │ │ │ │ ├── granular-result.ts │ │ │ │ ├── literal.ts │ │ │ │ ├── lookup-result.ts │ │ │ │ ├── malloy-element.ts │ │ │ │ ├── model-entry.ts │ │ │ │ ├── name-space.ts │ │ │ │ ├── noteable.ts │ │ │ │ ├── op-desc.ts │ │ │ │ ├── pipeline-comp.ts │ │ │ │ ├── query-builder.ts │ │ │ │ ├── query-comp.ts │ │ │ │ ├── query-element.ts │ │ │ │ ├── query-extend-property.ts │ │ │ │ ├── query-item.ts │ │ │ │ ├── query-property-interface.ts │ │ │ │ ├── query-property.ts │ │ │ │ ├── source-desc.ts │ │ │ │ ├── source-property.ts │ │ │ │ ├── space-entry.ts │ │ │ │ ├── space-field.ts │ │ │ │ ├── space-param.ts │ │ │ │ └── time-result.ts │ │ │ └── view-elements │ │ │ │ ├── qop-desc-view.ts │ │ │ │ ├── reference-view.ts │ │ │ │ ├── refine-utils.ts │ │ │ │ ├── view-arrow.ts │ │ │ │ ├── view-refine.ts │ │ │ │ └── view.ts │ │ ├── composite-source-utils.ts │ │ ├── field-utils.ts │ │ ├── grammar │ │ │ ├── MalloyLexer.g4 │ │ │ ├── MalloyParser.g4 │ │ │ └── build_parser.js │ │ ├── index.ts │ │ ├── malloy-parse-info.ts │ │ ├── malloy-to-ast.ts │ │ ├── malloy-to-stable-query.ts │ │ ├── parse-log.ts │ │ ├── parse-malloy.ts │ │ ├── parse-tree-walkers │ │ │ ├── document-completion-walker.ts │ │ │ ├── document-help-context-walker.ts │ │ │ ├── document-symbol-walker.ts │ │ │ ├── explore-query-walker.ts │ │ │ ├── find-external-references.ts │ │ │ ├── find-table-path-walker.ts │ │ │ └── model-annotation-walker.ts │ │ ├── parse-utils.ts │ │ ├── reference-list.ts │ │ ├── run-malloy-parser.ts │ │ ├── syntax-errors │ │ │ ├── custom-error-messages.ts │ │ │ ├── malloy-error-strategy.ts │ │ │ └── malloy-parser-error-listener.ts │ │ ├── test │ │ │ ├── annotation.spec.ts │ │ │ ├── composite-field-usage.spec.ts │ │ │ ├── document-help-context-walker.spec.ts │ │ │ ├── document-symbol-walker.spec.ts │ │ │ ├── expanded-grouping.spec.ts │ │ │ ├── expr-to-str.ts │ │ │ ├── expressions.spec.ts │ │ │ ├── field-symbols.spec.ts │ │ │ ├── filter-expressions.spec.ts │ │ │ ├── find-table-path-walker.spec.ts │ │ │ ├── imports.spec.ts │ │ │ ├── lenses.spec.ts │ │ │ ├── literals.spec.ts │ │ │ ├── locations.spec.ts │ │ │ ├── malloy-to-stable-query.spec.ts │ │ │ ├── model-annotation-walker.spec.ts │ │ │ ├── model_serialization.spec.ts │ │ │ ├── parameters.spec.ts │ │ │ ├── parse-expects.ts │ │ │ ├── parse.spec.ts │ │ │ ├── pretranslate.spec.ts │ │ │ ├── query.spec.ts │ │ │ ├── source.spec.ts │ │ │ ├── sql-block.spec.ts │ │ │ ├── syntax-errors.spec.ts │ │ │ └── test-translator.ts │ │ ├── translate-response.ts │ │ ├── utils.ts │ │ └── zone.ts │ ├── malloy.ts │ ├── model │ │ ├── CONTEXT.md │ │ ├── REFACTOR_README.md │ │ ├── constant_expression_compiler.ts │ │ ├── expression_compiler.ts │ │ ├── field_instance.ts │ │ ├── filter_compilers.ts │ │ ├── index.ts │ │ ├── join_instance.ts │ │ ├── malloy_types.ts │ │ ├── materialization │ │ │ └── utils.ts │ │ ├── query_model.ts │ │ ├── query_model_contract.ts │ │ ├── query_model_impl.ts │ │ ├── query_node.ts │ │ ├── query_query.ts │ │ ├── sql_block.ts │ │ ├── stage_writer.ts │ │ ├── test │ │ │ ├── constant_expression.spec.ts │ │ │ └── get_source_components.spec.ts │ │ ├── utils.spec.ts │ │ └── utils.ts │ ├── run_sql_options.ts │ ├── runtime_types.ts │ ├── test │ │ └── index.ts │ ├── timing.ts │ ├── to_stable.ts │ └── version.ts │ └── tsconfig.json ├── profiler ├── README.md ├── package.json ├── scripts │ └── flame_profile.sh ├── src │ ├── profile.ts │ ├── profiler.ts │ └── timer.ts └── tsconfig.json ├── samples └── READMEmd ├── scripts ├── build_duckdb_test_database.ts ├── ci-env-sanity-check.sh ├── ci-test-sanity-check.sh ├── cloud │ └── update_malloy.sh ├── flow-api-translator.d.ts ├── gen-flow.ts ├── gen-snowflake-auth.sh ├── license_disclaimer.ts ├── malloy-to-json.ts ├── parse_speed.ts ├── snowflake_tables.sh ├── third_party_licenses.ts └── utils │ └── licenses.ts ├── test ├── .gitignore ├── CONTEXT.md ├── README.md ├── bin │ ├── dump_malloytest.sh │ ├── ping_db.ts │ ├── postgres_init.sh │ ├── postgres_start.sh │ └── postgres_stop.sh ├── config │ └── core.config.json ├── data │ ├── duckdb │ │ ├── .gitignore │ │ ├── README.md │ │ ├── aircraft.parquet │ │ ├── aircraft_models.parquet │ │ ├── airports.parquet │ │ ├── alltypes.parquet │ │ ├── alltypes2.parquet │ │ ├── bq_medicare_test.parquet │ │ ├── carriers.parquet │ │ ├── flights.parquet │ │ ├── flights │ │ │ ├── part.0.parquet │ │ │ ├── part.1.parquet │ │ │ └── part.2.parquet │ │ ├── flights_partitioned.parquet │ │ ├── ga_sample.parquet │ │ ├── numbers.parquet │ │ ├── state_facts.parquet │ │ ├── test.json │ │ ├── words.parquet │ │ └── words_bigger.parquet │ ├── mysql │ │ └── malloytest.mysql.gz │ └── postgres │ │ ├── malloytest-postgres.sql.gz │ │ └── state_facts.sql ├── jest.setup.ts ├── mysql │ ├── mysql_start.sh │ └── mysql_stop.sh ├── package.json ├── postgres │ ├── postgres_start.sh │ └── postgres_stop.sh ├── presto │ ├── example_presto.malloy │ ├── presto_start.sh │ └── presto_stop.sh ├── snowflake │ └── uploaddata.sql ├── src │ ├── core │ │ ├── api.spec.ts │ │ ├── bugless.spec.ts │ │ ├── dependencies.spec.ts │ │ ├── events.spec.ts │ │ ├── experimental-dialects.spec.ts │ │ ├── jestMatcher.spec.ts │ │ ├── multi_connection.spec.ts │ │ ├── parameters.spec.ts │ │ ├── sql_source.spec.ts │ │ ├── streaming.spec.ts │ │ └── tags.spec.ts │ ├── databases │ │ ├── all │ │ │ ├── closeall.spec.ts │ │ │ ├── composite_sources.spec.ts │ │ │ ├── compound-atomic.spec.ts │ │ │ ├── db_filter_expressions.spec.ts │ │ │ ├── db_index.spec.ts │ │ │ ├── expr.spec.ts │ │ │ ├── functions.spec.ts │ │ │ ├── havinglimit.spec.ts │ │ │ ├── join.spec.ts │ │ │ ├── lenses.spec.ts │ │ │ ├── nomodel.spec.ts │ │ │ ├── orderby.spec.ts │ │ │ ├── problems.spec.ts │ │ │ ├── sql_expressions.spec.ts │ │ │ ├── test-select.spec.ts │ │ │ └── time.spec.ts │ │ ├── bigquery │ │ │ ├── double_truncation.spec.ts │ │ │ ├── functions.spec.ts │ │ │ ├── handexpr.spec.ts │ │ │ ├── injestion_time_partitioning.spec.ts │ │ │ ├── joined_filters.spec.ts │ │ │ ├── json.spec.ts │ │ │ ├── malloy_query.spec.ts │ │ │ ├── nested_source_table.spec.ts │ │ │ ├── performance.skipped.spec.ts │ │ │ ├── time.spec.ts │ │ │ └── wildcard_table_names.spec.ts │ │ ├── duckdb-all │ │ │ ├── duckdb.spec.ts │ │ │ └── materialization.spec.ts │ │ ├── duckdb │ │ │ ├── model_caching.spec.ts │ │ │ ├── nested_source_table.spec.ts │ │ │ ├── reference-id.spec.ts │ │ │ └── streaming.spec.ts │ │ ├── postgres │ │ │ └── postgres.spec.ts │ │ ├── presto-trino │ │ │ └── presto-trino.spec.ts │ │ └── shared │ │ │ └── test_list.ts │ ├── index.ts │ ├── models │ │ ├── faa_model.ts │ │ └── medicare_model.ts │ ├── render │ │ ├── __snapshots__ │ │ │ └── render.spec.ts.snap │ │ └── render.spec.ts │ ├── runtimes.ts │ ├── test-select.ts │ └── util │ │ ├── db-jest-matchers.ts │ │ ├── db-matcher-support.ts │ │ └── index.ts ├── trino │ ├── example_trino.malloy │ ├── trino_start.sh │ └── trino_stop.sh ├── tsconfig.json └── types │ └── jest.d.ts ├── tsconfig.compile-no-emit.json ├── tsconfig.json ├── tsconfig.packages.json └── vscode-extension └── READMEmd /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/dco.yml -------------------------------------------------------------------------------- /.github/workflows/db-bigquery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-bigquery.yaml -------------------------------------------------------------------------------- /.github/workflows/db-duckdb-wasm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-duckdb-wasm.yaml -------------------------------------------------------------------------------- /.github/workflows/db-duckdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-duckdb.yaml -------------------------------------------------------------------------------- /.github/workflows/db-motherduck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-motherduck.yaml -------------------------------------------------------------------------------- /.github/workflows/db-mysql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-mysql.yaml -------------------------------------------------------------------------------- /.github/workflows/db-postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-postgres.yaml -------------------------------------------------------------------------------- /.github/workflows/db-presto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-presto.yaml -------------------------------------------------------------------------------- /.github/workflows/db-publisher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-publisher.yaml -------------------------------------------------------------------------------- /.github/workflows/db-snowflake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-snowflake.yaml -------------------------------------------------------------------------------- /.github/workflows/db-trino.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/db-trino.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/prerelease.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.github/workflows/run-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.18.1 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/CONTEXT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/README.md -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/default.nix -------------------------------------------------------------------------------- /demo/malloy-demo-bq-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/demo/malloy-demo-bq-cli/README.md -------------------------------------------------------------------------------- /demo/malloy-demo-composer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/demo/malloy-demo-composer/README.md -------------------------------------------------------------------------------- /demo/malloy-duckdb-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/demo/malloy-duckdb-wasm/README.md -------------------------------------------------------------------------------- /developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/developing.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/jest.config.ts -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/package.json -------------------------------------------------------------------------------- /packages/malloy-db-bigquery/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | -------------------------------------------------------------------------------- /packages/malloy-db-bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-bigquery/README.md -------------------------------------------------------------------------------- /packages/malloy-db-bigquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-bigquery/package.json -------------------------------------------------------------------------------- /packages/malloy-db-bigquery/src/bigquery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-bigquery/src/bigquery.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-bigquery/src/bigquery_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-bigquery/src/bigquery_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-bigquery/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-bigquery/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-bigquery/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-bigquery/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/README.md -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/package.json -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/duckdb.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/duckdb.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/duckdb_common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/duckdb_common.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/duckdb_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/duckdb_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/duckdb_wasm_connection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/duckdb_wasm_connection.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/duckdb_wasm_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/duckdb_wasm_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/duckdb_wasm_connection_browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/duckdb_wasm_connection_browser.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/duckdb_wasm_connection_node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/duckdb_wasm_connection_node.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-duckdb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-duckdb/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-db-mysql/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | -------------------------------------------------------------------------------- /packages/malloy-db-mysql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-mysql/package.json -------------------------------------------------------------------------------- /packages/malloy-db-mysql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-mysql/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-mysql/src/mysql.s_p_e_c_dont_run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-mysql/src/mysql.s_p_e_c_dont_run.ts -------------------------------------------------------------------------------- /packages/malloy-db-mysql/src/mysql_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-mysql/src/mysql_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-mysql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-mysql/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-db-postgres/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | -------------------------------------------------------------------------------- /packages/malloy-db-postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-postgres/README.md -------------------------------------------------------------------------------- /packages/malloy-db-postgres/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-postgres/package.json -------------------------------------------------------------------------------- /packages/malloy-db-postgres/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-postgres/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-postgres/src/postgres.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-postgres/src/postgres.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-postgres/src/postgres_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-postgres/src/postgres_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-postgres/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-postgres/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-db-publisher/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/openapitools.json -------------------------------------------------------------------------------- /packages/malloy-db-publisher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/package.json -------------------------------------------------------------------------------- /packages/malloy-db-publisher/publisher-api-doc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/publisher-api-doc.yaml -------------------------------------------------------------------------------- /packages/malloy-db-publisher/scripts/patch-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/scripts/patch-common.js -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/.gitignore: -------------------------------------------------------------------------------- 1 | wwwroot/*.js 2 | node_modules 3 | typings 4 | dist 5 | -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/.npmignore -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/.openapi-generator-ignore -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/.openapi-generator/FILES -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 7.12.0 2 | -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/api.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/base.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/common.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/configuration.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/git_push.sh -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/client/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/publisher_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/publisher_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/src/publisher_connection.unit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/src/publisher_connection.unit.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-publisher/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-publisher/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-db-snowflake/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-snowflake/package.json -------------------------------------------------------------------------------- /packages/malloy-db-snowflake/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-snowflake/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-snowflake/src/snowflake_connection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-snowflake/src/snowflake_connection.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-snowflake/src/snowflake_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-snowflake/src/snowflake_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-snowflake/src/snowflake_executor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-snowflake/src/snowflake_executor.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-snowflake/src/snowflake_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-snowflake/src/snowflake_executor.ts -------------------------------------------------------------------------------- /packages/malloy-db-snowflake/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-snowflake/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-db-trino/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | -------------------------------------------------------------------------------- /packages/malloy-db-trino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/README.md -------------------------------------------------------------------------------- /packages/malloy-db-trino/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/package.json -------------------------------------------------------------------------------- /packages/malloy-db-trino/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-db-trino/src/test.nonspec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/src/test.nonspec.ts -------------------------------------------------------------------------------- /packages/malloy-db-trino/src/trino_connection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/src/trino_connection.spec.ts -------------------------------------------------------------------------------- /packages/malloy-db-trino/src/trino_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/src/trino_connection.ts -------------------------------------------------------------------------------- /packages/malloy-db-trino/src/trino_executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/src/trino_executor.ts -------------------------------------------------------------------------------- /packages/malloy-db-trino/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-db-trino/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-filter/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | src/lib/ 3 | -------------------------------------------------------------------------------- /packages/malloy-filter/.npmignore: -------------------------------------------------------------------------------- 1 | *.spec.* 2 | *.ne 3 | -------------------------------------------------------------------------------- /packages/malloy-filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/README.md -------------------------------------------------------------------------------- /packages/malloy-filter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/package.json -------------------------------------------------------------------------------- /packages/malloy-filter/src/boolean_filter_expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/boolean_filter_expression.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/clause_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/clause_utils.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/filter_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/filter_interface.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/grammars/fexpr_number.ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/grammars/fexpr_number.ne -------------------------------------------------------------------------------- /packages/malloy-filter/src/grammars/fexpr_string.ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/grammars/fexpr_string.ne -------------------------------------------------------------------------------- /packages/malloy-filter/src/grammars/ftemporal.ne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/grammars/ftemporal.ne -------------------------------------------------------------------------------- /packages/malloy-filter/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/nearley_parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/nearley_parse.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/number_filter_expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/number_filter_expression.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/string_filter_expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/string_filter_expression.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/temporal_filter_expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/temporal_filter_expression.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/test/fbool.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/test/fbool.spec.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/test/fnumber.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/test/fnumber.spec.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/test/fstring.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/test/fstring.spec.ts -------------------------------------------------------------------------------- /packages/malloy-filter/src/test/ftemporal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/src/test/ftemporal.spec.ts -------------------------------------------------------------------------------- /packages/malloy-filter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-filter/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-interfaces/.gitignore: -------------------------------------------------------------------------------- 1 | /docs 2 | /src/generated-types 3 | -------------------------------------------------------------------------------- /packages/malloy-interfaces/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | -------------------------------------------------------------------------------- /packages/malloy-interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/README.md -------------------------------------------------------------------------------- /packages/malloy-interfaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/package.json -------------------------------------------------------------------------------- /packages/malloy-interfaces/scripts/hacky_gen_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/scripts/hacky_gen_types.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/src/nest_unions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/src/nest_unions.spec.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/src/nest_unions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/src/nest_unions.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/src/reserved_words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/src/reserved_words.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/src/to_malloy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/src/to_malloy.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/src/types.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/src/util.ts -------------------------------------------------------------------------------- /packages/malloy-interfaces/thrift/malloy.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/thrift/malloy.thrift -------------------------------------------------------------------------------- /packages/malloy-interfaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-interfaces/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/.gitignore -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/.npmignore -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/package.json -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/grammar/malloySQL.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/grammar/malloySQL.pegjs -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/grammar/malloySQLSQL.pegjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/grammar/malloySQLSQL.pegjs -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/grammar/test/parse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/grammar/test/parse.spec.ts -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/malloySQLErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/malloySQLErrors.ts -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/malloySQLParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/malloySQLParser.ts -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/malloySQLSQLParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/malloySQLSQLParser.ts -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/src/types.ts -------------------------------------------------------------------------------- /packages/malloy-malloy-sql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-malloy-sql/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-query-builder/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/DEVELOPING.md -------------------------------------------------------------------------------- /packages/malloy-query-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/README.md -------------------------------------------------------------------------------- /packages/malloy-query-builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/package.json -------------------------------------------------------------------------------- /packages/malloy-query-builder/src/expects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/src/expects.ts -------------------------------------------------------------------------------- /packages/malloy-query-builder/src/flights_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/src/flights_model.ts -------------------------------------------------------------------------------- /packages/malloy-query-builder/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-query-builder/src/query-ast.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/src/query-ast.spec.ts -------------------------------------------------------------------------------- /packages/malloy-query-builder/src/query-ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/src/query-ast.ts -------------------------------------------------------------------------------- /packages/malloy-query-builder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-query-builder/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-render/.gitignore: -------------------------------------------------------------------------------- 1 | storybook-static -------------------------------------------------------------------------------- /packages/malloy-render/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | storybook-static 6 | -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/main.ts -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/malloy-stories-indexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/malloy-stories-indexer.ts -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/manager-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/manager-head.html -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/manager.ts -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/preview-head.html -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/preview.ts -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/registered_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/registered_data.json -------------------------------------------------------------------------------- /packages/malloy-render/.storybook/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/.storybook/theme.ts -------------------------------------------------------------------------------- /packages/malloy-render/API_MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/API_MIGRATION.md -------------------------------------------------------------------------------- /packages/malloy-render/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/CONTEXT.md -------------------------------------------------------------------------------- /packages/malloy-render/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/DEVELOPING.md -------------------------------------------------------------------------------- /packages/malloy-render/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/README.md -------------------------------------------------------------------------------- /packages/malloy-render/docs/plans/field-creation-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/docs/plans/field-creation-analysis.md -------------------------------------------------------------------------------- /packages/malloy-render/docs/plugin-api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/docs/plugin-api-reference.md -------------------------------------------------------------------------------- /packages/malloy-render/docs/plugin-quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/docs/plugin-quick-start.md -------------------------------------------------------------------------------- /packages/malloy-render/docs/plugin-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/docs/plugin-system.md -------------------------------------------------------------------------------- /packages/malloy-render/docs/renderer_tag_cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/docs/renderer_tag_cheatsheet.md -------------------------------------------------------------------------------- /packages/malloy-render/docs/renderer_tags_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/docs/renderer_tags_overview.md -------------------------------------------------------------------------------- /packages/malloy-render/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/package.json -------------------------------------------------------------------------------- /packages/malloy-render/src/api/json-schema-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/api/json-schema-types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/api/malloy-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/api/malloy-renderer.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/api/malloy-viz.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/api/malloy-viz.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/api/plugin-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/api/plugin-types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/api/types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/chart/chart-dev-tool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/chart/chart-dev-tool.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/chart/chart-layout-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/chart/chart-layout-settings.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/chart/chart-v2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/chart/chart-v2.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/chart/chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/chart/chart.css -------------------------------------------------------------------------------- /packages/malloy-render/src/component/chart/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/chart/chart.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/chart/debug_icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/chart/debug_icon.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/dashboard/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/dashboard/dashboard.css -------------------------------------------------------------------------------- /packages/malloy-render/src/component/dashboard/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/dashboard/dashboard.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/default-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/default-settings.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/legacy-charts/legacy_chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/legacy-charts/legacy_chart.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/malloy-modal/malloy-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/malloy-modal/malloy-modal.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render-image.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render-link.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render-list.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render-numeric-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render-numeric-field.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render-result-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render-result-metadata.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render-time.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render.css -------------------------------------------------------------------------------- /packages/malloy-render/src/component/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/render.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/renderer/apply-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/renderer/apply-renderer.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/result-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/result-context.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/result-store/result-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/result-store/result-store.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/pivot-cells.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/pivot-cells.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/pivot-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/pivot-header.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/pivot-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/pivot-utils.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/table-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/table-context.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/table-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/table-layout.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/table.css -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/table.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/table/transpose-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/table/transpose-table.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/tag-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/tag-utils.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/tooltip/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/tooltip/tooltip.css -------------------------------------------------------------------------------- /packages/malloy-render/src/component/tooltip/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/tooltip/tooltip.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/util.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/vega-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/vega-types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/vega/base-vega-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/vega/base-vega-config.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/vega/measure-axis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/vega/measure-axis.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/vega/merge-vega-configs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/vega/merge-vega-configs.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/vega/vega-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/vega/vega-chart.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/component/vega/vega-expr-addons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/vega/vega-expr-addons.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/component/vega/vega-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/component/vega/vega-utils.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/cells/atomic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/cells/atomic.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/cells/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/cells/base.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/cells/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/cells/index.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/cells/nest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/cells/nest.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/drilling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/drilling.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/fields/atomic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/fields/atomic.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/fields/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/fields/base.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/fields/index.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/fields/nest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/fields/nest.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/index.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/data_tree/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/data_tree/utils.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/drill.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/drill.spec.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/fonts/google-sans-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/fonts/google-sans-regular-400.woff2 -------------------------------------------------------------------------------- /packages/malloy-render/src/html/area_sparkline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/area_sparkline.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/bar_chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/bar_chart.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/bar_sparkline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/bar_sparkline.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/boolean.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/bytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/bytes.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/cartesian_chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/cartesian_chart.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/chart.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/column_sparkline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/column_sparkline.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/container.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/currency.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/dashboard.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/data_styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/data_styles.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/data_volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/data_volume.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/date.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/duration.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/fonts/woff2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/fonts/woff2.d.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/html_view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/html_view.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/image.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/index.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/json.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/line_chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/line_chart.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/link.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/list.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/list_detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/list_detail.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/main_renderer_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/main_renderer_factory.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/number.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/percent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/percent.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/point_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/point_map.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/renderer.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/renderer_factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/renderer_factory.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/renderer_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/renderer_types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/scatter_chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/scatter_chart.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/segment_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/segment_map.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/shape_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/shape_map.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/sparkline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/sparkline.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/state_codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/state_codes.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/table.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/text.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/unsupported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/unsupported.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/utils.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/html/vega_spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/html/vega_spec.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/plugins/bar-chart/bar-chart-plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/plugins/bar-chart/bar-chart-plugin.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/plugins/bar-chart/settings-to-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/plugins/bar-chart/settings-to-tag.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/plugins/dummy-dom-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/plugins/dummy-dom-plugin.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/plugins/dummy-plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/plugins/dummy-plugin.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/plugins/error/error-plugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/plugins/error/error-plugin.tsx -------------------------------------------------------------------------------- /packages/malloy-render/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/plugins/index.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/plugins/line-chart/settings-to-tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/plugins/line-chart/settings-to-tag.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/registry/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/registry/types.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/render-field-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/render-field-metadata.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/About.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/About.mdx -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/bar_chart.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/bar_chart.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/dashboard.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/dashboard.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/image.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/image.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/legacy-basic.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/legacy-basic.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/legacy-charts.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/legacy-charts.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/line_charts.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/line_charts.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/link.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/link.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/list.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/list.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/plugins.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/plugins.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/scroll-override.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/scroll-override.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/scroll-override.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/scroll-override.stories.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/static/data/logos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/static/data/logos.csv -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/static/data/missing_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/static/data/missing_data.csv -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/static/data/products.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/static/data/products.parquet -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/static/favicon.ico -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/static/malloy-sparks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/static/malloy-sparks.png -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/tables.stories.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/tables.stories.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/themes.css -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/themes.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/themes.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/themes.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/themes.stories.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/util.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/vega-config-override.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/vega-config-override.malloy -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/vite.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/vite.d.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/stories/wrapped-table.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/stories/wrapped-table.stories.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/types/solid-js.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/types/solid-js.d.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/util.spec.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/util.ts -------------------------------------------------------------------------------- /packages/malloy-render/src/vega.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/src/vega.d.ts -------------------------------------------------------------------------------- /packages/malloy-render/test/mocks/cssMock.js: -------------------------------------------------------------------------------- 1 | module.exports = ''; 2 | -------------------------------------------------------------------------------- /packages/malloy-render/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-render/vite.config.base.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/vite.config.base.mts -------------------------------------------------------------------------------- /packages/malloy-render/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-render/vite.config.mts -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/.github/README.md -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/DEVELOPING.md -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/README.md -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/grammars/malloy/malloy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/grammars/malloy/malloy.spec.ts -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/grammars/malloy/malloy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/grammars/malloy/malloy.test.ts -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/jest.config.js -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/karma.conf.js -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/package.json -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/scripts/generateMonarchTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/scripts/generateMonarchTheme.ts -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/test/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/test/testUtils.ts -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/test/visual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/test/visual/index.html -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/test/visual/malloy.tmGrammar.json: -------------------------------------------------------------------------------- 1 | ../../grammars/malloy/malloy.tmGrammar.json -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/themes/monaco/darkPlus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/themes/monaco/darkPlus.ts -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/themes/monaco/lightPlus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/themes/monaco/lightPlus.ts -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/themes/textmate/dark_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/themes/textmate/dark_plus.json -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/themes/textmate/dark_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/themes/textmate/dark_vs.json -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/themes/textmate/light_plus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/themes/textmate/light_plus.json -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/themes/textmate/light_vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/themes/textmate/light_vs.json -------------------------------------------------------------------------------- /packages/malloy-syntax-highlight/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-syntax-highlight/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy-tag/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/CONTEXT.md -------------------------------------------------------------------------------- /packages/malloy-tag/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/malloy-tag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/package.json -------------------------------------------------------------------------------- /packages/malloy-tag/scripts/build_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/scripts/build_parser.js -------------------------------------------------------------------------------- /packages/malloy-tag/src/MalloyTag.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/src/MalloyTag.g4 -------------------------------------------------------------------------------- /packages/malloy-tag/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/src/index.ts -------------------------------------------------------------------------------- /packages/malloy-tag/src/tags.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/src/tags.spec.ts -------------------------------------------------------------------------------- /packages/malloy-tag/src/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/src/tags.ts -------------------------------------------------------------------------------- /packages/malloy-tag/src/util.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/src/util.spec.ts -------------------------------------------------------------------------------- /packages/malloy-tag/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/src/util.ts -------------------------------------------------------------------------------- /packages/malloy-tag/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy-tag/tsconfig.json -------------------------------------------------------------------------------- /packages/malloy/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | *.map 3 | tsconfig* 4 | *.spec.* 5 | -------------------------------------------------------------------------------- /packages/malloy/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/CONTEXT.md -------------------------------------------------------------------------------- /packages/malloy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/README.md -------------------------------------------------------------------------------- /packages/malloy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/package.json -------------------------------------------------------------------------------- /packages/malloy/src/annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/annotation.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/asynchronous.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/asynchronous.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/asynchronous.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/asynchronous.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/connection.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/core.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/sessioned.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/sessioned.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/sessioned.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/sessioned.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/stateless.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/stateless.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/stateless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/stateless.ts -------------------------------------------------------------------------------- /packages/malloy/src/api/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/api/util.ts -------------------------------------------------------------------------------- /packages/malloy/src/connection/base_connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/connection/base_connection.ts -------------------------------------------------------------------------------- /packages/malloy/src/connection/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/connection/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/connection/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/connection/types.ts -------------------------------------------------------------------------------- /packages/malloy/src/connection_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/connection_utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/README.md -------------------------------------------------------------------------------- /packages/malloy/src/dialect/dialect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/dialect.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/dialect_map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/dialect_map.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/duckdb/dialect_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/duckdb/dialect_functions.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/duckdb/duckdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/duckdb/duckdb.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/duckdb/function_overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/duckdb/function_overrides.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/duckdb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/duckdb/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/functions/README.md -------------------------------------------------------------------------------- /packages/malloy/src/dialect/functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/functions/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/functions/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/functions/util.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/mysql/dialect_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/mysql/dialect_functions.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/mysql/function_overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/mysql/function_overrides.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/mysql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/mysql/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/mysql/mysql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/mysql/mysql.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/pg_impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/pg_impl.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/postgres/dialect_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/postgres/dialect_functions.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/postgres/function_overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/postgres/function_overrides.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/postgres/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/postgres/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/postgres/postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/postgres/postgres.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/snowflake/dialect_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/snowflake/dialect_functions.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/snowflake/function_overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/snowflake/function_overrides.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/snowflake/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/snowflake/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/snowflake/snowflake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/snowflake/snowflake.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/standardsql/dialect_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/standardsql/dialect_functions.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/standardsql/function_overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/standardsql/function_overrides.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/standardsql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/standardsql/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/standardsql/standardsql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/standardsql/standardsql.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/tiny_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/tiny_parser.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/trino/dialect_functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/trino/dialect_functions.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/trino/function_overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/trino/function_overrides.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/trino/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/trino/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/dialect/trino/trino.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/dialect/trino/trino.ts -------------------------------------------------------------------------------- /packages/malloy/src/doc/adding-error-explanations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/adding-error-explanations.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/ast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/ast.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/experimental.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/experimental.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/expr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/expr.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/fielddef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/fielddef.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/logging.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/null-safe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/null-safe.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/param-internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/param-internal.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/structdef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/structdef.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/typedesc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/typedesc.md -------------------------------------------------------------------------------- /packages/malloy/src/doc/ungroup-check-explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/doc/ungroup-check-explain.md -------------------------------------------------------------------------------- /packages/malloy/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/CONTEXT.md -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/ast-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/ast-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/error-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/error-factory.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/apply.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/binary-boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/binary-boolean.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/binary-numeric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/binary-numeric.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/boolean.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/case.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/constant-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/constant-expression.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-add-sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-add-sub.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-alternation-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-alternation-tree.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-array-literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-array-literal.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-asymmetric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-asymmetric.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-avg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-avg.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-cast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-cast.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-coalesce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-coalesce.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-compare.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-count-distinct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-count-distinct.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-count.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-filter-expr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-filter-expr.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-func.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-granular-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-granular-time.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-id-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-id-reference.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-logical-op.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-logical-op.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-max.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-max.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-min.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-min.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-minus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-minus.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-mul-div.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-mul-div.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-not.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-not.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-now.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-now.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-null.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-number.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-parens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-parens.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-props.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-record-literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-record-literal.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-regex.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-string.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-sum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-sum.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-time-extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-time-extract.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-time.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/expr-ungroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/expr-ungroup.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/for-range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/for-range.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/function-ordering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/function-ordering.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/grouped_by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/grouped_by.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/partial-compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/partial-compare.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/partition_by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/partition_by.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/pick-when.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/pick-when.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/range.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/time-frame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/time-frame.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/time-literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/time-literal.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/expressions/unary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/expressions/unary.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/ast-view-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/ast-view-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/column-space-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/column-space-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/def-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/def-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/dynamic-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/dynamic-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/include-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/include-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/index-field-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/index-field-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/ir-view-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/ir-view-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/join-space-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/join-space-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/parameter-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/parameter-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/passthrough-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/passthrough-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/permissive-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/permissive-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/project-field-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/project-field-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/query-input-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/query-input-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/query-spaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/query-spaces.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/reference-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/reference-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/refined-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/refined-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/rename-space-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/rename-space-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/static-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/static-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/field-space/view-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/field-space/view-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/parameters/argument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/parameters/argument.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/parameters/has-parameter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/parameters/has-parameter.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-builders/index-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-builders/index-builder.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-builders/partial-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-builders/partial-builder.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-builders/project-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-builders/project-builder.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-builders/reduce-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-builders/reduce-builder.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-elements/anonymous-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-elements/anonymous-query.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-elements/query-arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-elements/query-arrow.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-elements/query-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-elements/query-base.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-elements/query-head-struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-elements/query-head-struct.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-elements/query-raw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-elements/query-raw.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-elements/query-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-elements/query-reference.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-elements/query-refine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-elements/query-refine.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-items/field-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-items/field-declaration.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-items/field-references.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-items/field-references.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-items/typecheck_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-items/typecheck_utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/aggregate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/aggregate.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/calculate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/calculate.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/declare-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/declare-fields.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/drill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/drill.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/extend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/extend.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/filters.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/group-by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/group-by.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/indexing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/indexing.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/limit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/limit.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/nest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/nest.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/nests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/nests.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/ordering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/ordering.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/qop-desc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/qop-desc.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-properties/sampling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-properties/sampling.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/query-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/query-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-elements/composite-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-elements/composite-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-elements/named-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-elements/named-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-elements/query-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-elements/query-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-elements/refined-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-elements/refined-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-elements/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-elements/source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-elements/sql-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-elements/sql-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-elements/table-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-elements/table-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-properties/dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-properties/dimensions.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-properties/field-list-edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-properties/field-list-edit.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-properties/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-properties/join.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-properties/measures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-properties/measures.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-properties/primary-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-properties/primary-key.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-properties/renames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-properties/renames.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-properties/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-properties/views.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-query-elements/sq-arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-query-elements/sq-arrow.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-query-elements/sq-compose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-query-elements/sq-compose.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-query-elements/sq-extend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-query-elements/sq-extend.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-query-elements/sq-refine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-query-elements/sq-refine.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/source-query-elements/sq-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/source-query-elements/sq-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/sql-elements/sql-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/sql-elements/sql-string.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/statements/define-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/statements/define-query.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/statements/define-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/statements/define-source.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/statements/import-statement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/statements/import-statement.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/time-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/time-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/typedesc-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/typedesc-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/annotation-elements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/annotation-elements.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/binary_operators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/binary_operators.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/definition-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/definition-list.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/dialect-name-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/dialect-name-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/document-compile-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/document-compile-result.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/expr-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/expr-result.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/expr-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/expr-value.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/expression-def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/expression-def.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/field-collection-member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/field-collection-member.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/field-prop-statement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/field-prop-statement.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/field-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/field-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/global-name-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/global-name-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/granular-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/granular-result.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/literal.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/lookup-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/lookup-result.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/malloy-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/malloy-element.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/model-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/model-entry.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/name-space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/name-space.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/noteable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/noteable.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/op-desc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/op-desc.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/pipeline-comp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/pipeline-comp.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/query-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/query-builder.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/query-comp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/query-comp.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/query-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/query-element.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/query-extend-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/query-extend-property.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/query-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/query-item.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/query-property-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/query-property-interface.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/query-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/query-property.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/source-desc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/source-desc.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/source-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/source-property.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/space-entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/space-entry.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/space-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/space-field.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/space-param.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/space-param.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/types/time-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/types/time-result.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/view-elements/qop-desc-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/view-elements/qop-desc-view.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/view-elements/reference-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/view-elements/reference-view.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/view-elements/refine-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/view-elements/refine-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/view-elements/view-arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/view-elements/view-arrow.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/view-elements/view-refine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/view-elements/view-refine.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/ast/view-elements/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/ast/view-elements/view.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/composite-source-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/composite-source-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/field-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/field-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/grammar/MalloyLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/grammar/MalloyLexer.g4 -------------------------------------------------------------------------------- /packages/malloy/src/lang/grammar/MalloyParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/grammar/MalloyParser.g4 -------------------------------------------------------------------------------- /packages/malloy/src/lang/grammar/build_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/grammar/build_parser.js -------------------------------------------------------------------------------- /packages/malloy/src/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/malloy-parse-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/malloy-parse-info.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/malloy-to-ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/malloy-to-ast.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/malloy-to-stable-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/malloy-to-stable-query.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/parse-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/parse-log.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/parse-malloy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/parse-malloy.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/parse-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/parse-utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/reference-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/reference-list.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/run-malloy-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/run-malloy-parser.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/syntax-errors/custom-error-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/syntax-errors/custom-error-messages.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/syntax-errors/malloy-error-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/syntax-errors/malloy-error-strategy.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/annotation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/annotation.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/composite-field-usage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/composite-field-usage.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/document-symbol-walker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/document-symbol-walker.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/expanded-grouping.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/expanded-grouping.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/expr-to-str.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/expr-to-str.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/expressions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/expressions.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/field-symbols.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/field-symbols.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/filter-expressions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/filter-expressions.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/find-table-path-walker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/find-table-path-walker.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/imports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/imports.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/lenses.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/lenses.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/literals.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/literals.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/locations.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/locations.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/malloy-to-stable-query.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/malloy-to-stable-query.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/model-annotation-walker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/model-annotation-walker.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/model_serialization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/model_serialization.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/parameters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/parameters.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/parse-expects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/parse-expects.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/parse.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/parse.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/pretranslate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/pretranslate.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/query.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/query.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/source.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/source.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/sql-block.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/sql-block.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/syntax-errors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/syntax-errors.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/test/test-translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/test/test-translator.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/translate-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/translate-response.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/lang/zone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/lang/zone.ts -------------------------------------------------------------------------------- /packages/malloy/src/malloy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/malloy.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/CONTEXT.md -------------------------------------------------------------------------------- /packages/malloy/src/model/REFACTOR_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/REFACTOR_README.md -------------------------------------------------------------------------------- /packages/malloy/src/model/constant_expression_compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/constant_expression_compiler.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/expression_compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/expression_compiler.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/field_instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/field_instance.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/filter_compilers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/filter_compilers.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/join_instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/join_instance.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/malloy_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/malloy_types.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/materialization/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/materialization/utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/query_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/query_model.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/query_model_contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/query_model_contract.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/query_model_impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/query_model_impl.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/query_node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/query_node.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/query_query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/query_query.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/sql_block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/sql_block.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/stage_writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/stage_writer.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/test/constant_expression.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/test/constant_expression.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/test/get_source_components.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/test/get_source_components.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/utils.spec.ts -------------------------------------------------------------------------------- /packages/malloy/src/model/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/model/utils.ts -------------------------------------------------------------------------------- /packages/malloy/src/run_sql_options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/run_sql_options.ts -------------------------------------------------------------------------------- /packages/malloy/src/runtime_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/runtime_types.ts -------------------------------------------------------------------------------- /packages/malloy/src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/test/index.ts -------------------------------------------------------------------------------- /packages/malloy/src/timing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/timing.ts -------------------------------------------------------------------------------- /packages/malloy/src/to_stable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/to_stable.ts -------------------------------------------------------------------------------- /packages/malloy/src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/src/version.ts -------------------------------------------------------------------------------- /packages/malloy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/packages/malloy/tsconfig.json -------------------------------------------------------------------------------- /profiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/profiler/README.md -------------------------------------------------------------------------------- /profiler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/profiler/package.json -------------------------------------------------------------------------------- /profiler/scripts/flame_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/profiler/scripts/flame_profile.sh -------------------------------------------------------------------------------- /profiler/src/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/profiler/src/profile.ts -------------------------------------------------------------------------------- /profiler/src/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/profiler/src/profiler.ts -------------------------------------------------------------------------------- /profiler/src/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/profiler/src/timer.ts -------------------------------------------------------------------------------- /profiler/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/profiler/tsconfig.json -------------------------------------------------------------------------------- /samples/READMEmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/samples/READMEmd -------------------------------------------------------------------------------- /scripts/build_duckdb_test_database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/build_duckdb_test_database.ts -------------------------------------------------------------------------------- /scripts/ci-env-sanity-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/ci-env-sanity-check.sh -------------------------------------------------------------------------------- /scripts/ci-test-sanity-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/ci-test-sanity-check.sh -------------------------------------------------------------------------------- /scripts/cloud/update_malloy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/cloud/update_malloy.sh -------------------------------------------------------------------------------- /scripts/flow-api-translator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/flow-api-translator.d.ts -------------------------------------------------------------------------------- /scripts/gen-flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/gen-flow.ts -------------------------------------------------------------------------------- /scripts/gen-snowflake-auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/gen-snowflake-auth.sh -------------------------------------------------------------------------------- /scripts/license_disclaimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/license_disclaimer.ts -------------------------------------------------------------------------------- /scripts/malloy-to-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/malloy-to-json.ts -------------------------------------------------------------------------------- /scripts/parse_speed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/parse_speed.ts -------------------------------------------------------------------------------- /scripts/snowflake_tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/snowflake_tables.sh -------------------------------------------------------------------------------- /scripts/third_party_licenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/third_party_licenses.ts -------------------------------------------------------------------------------- /scripts/utils/licenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/scripts/utils/licenses.ts -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | .tmp -------------------------------------------------------------------------------- /test/CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/CONTEXT.md -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/README.md -------------------------------------------------------------------------------- /test/bin/dump_malloytest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/bin/dump_malloytest.sh -------------------------------------------------------------------------------- /test/bin/ping_db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/bin/ping_db.ts -------------------------------------------------------------------------------- /test/bin/postgres_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/bin/postgres_init.sh -------------------------------------------------------------------------------- /test/bin/postgres_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/bin/postgres_start.sh -------------------------------------------------------------------------------- /test/bin/postgres_stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | pg_ctl -D .tmp/data/malloytestdb stop -------------------------------------------------------------------------------- /test/config/core.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/config/core.config.json -------------------------------------------------------------------------------- /test/data/duckdb/.gitignore: -------------------------------------------------------------------------------- 1 | *.db -------------------------------------------------------------------------------- /test/data/duckdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/README.md -------------------------------------------------------------------------------- /test/data/duckdb/aircraft.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/aircraft.parquet -------------------------------------------------------------------------------- /test/data/duckdb/aircraft_models.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/aircraft_models.parquet -------------------------------------------------------------------------------- /test/data/duckdb/airports.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/airports.parquet -------------------------------------------------------------------------------- /test/data/duckdb/alltypes.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/alltypes.parquet -------------------------------------------------------------------------------- /test/data/duckdb/alltypes2.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/alltypes2.parquet -------------------------------------------------------------------------------- /test/data/duckdb/bq_medicare_test.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/bq_medicare_test.parquet -------------------------------------------------------------------------------- /test/data/duckdb/carriers.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/carriers.parquet -------------------------------------------------------------------------------- /test/data/duckdb/flights.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/flights.parquet -------------------------------------------------------------------------------- /test/data/duckdb/flights/part.0.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/flights/part.0.parquet -------------------------------------------------------------------------------- /test/data/duckdb/flights/part.1.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/flights/part.1.parquet -------------------------------------------------------------------------------- /test/data/duckdb/flights/part.2.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/flights/part.2.parquet -------------------------------------------------------------------------------- /test/data/duckdb/flights_partitioned.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/flights_partitioned.parquet -------------------------------------------------------------------------------- /test/data/duckdb/ga_sample.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/ga_sample.parquet -------------------------------------------------------------------------------- /test/data/duckdb/numbers.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/numbers.parquet -------------------------------------------------------------------------------- /test/data/duckdb/state_facts.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/state_facts.parquet -------------------------------------------------------------------------------- /test/data/duckdb/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /test/data/duckdb/words.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/words.parquet -------------------------------------------------------------------------------- /test/data/duckdb/words_bigger.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/duckdb/words_bigger.parquet -------------------------------------------------------------------------------- /test/data/mysql/malloytest.mysql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/mysql/malloytest.mysql.gz -------------------------------------------------------------------------------- /test/data/postgres/malloytest-postgres.sql.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/postgres/malloytest-postgres.sql.gz -------------------------------------------------------------------------------- /test/data/postgres/state_facts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/data/postgres/state_facts.sql -------------------------------------------------------------------------------- /test/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/jest.setup.ts -------------------------------------------------------------------------------- /test/mysql/mysql_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/mysql/mysql_start.sh -------------------------------------------------------------------------------- /test/mysql/mysql_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/mysql/mysql_stop.sh -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/package.json -------------------------------------------------------------------------------- /test/postgres/postgres_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/postgres/postgres_start.sh -------------------------------------------------------------------------------- /test/postgres/postgres_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/postgres/postgres_stop.sh -------------------------------------------------------------------------------- /test/presto/example_presto.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/presto/example_presto.malloy -------------------------------------------------------------------------------- /test/presto/presto_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/presto/presto_start.sh -------------------------------------------------------------------------------- /test/presto/presto_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/presto/presto_stop.sh -------------------------------------------------------------------------------- /test/snowflake/uploaddata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/snowflake/uploaddata.sql -------------------------------------------------------------------------------- /test/src/core/api.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/api.spec.ts -------------------------------------------------------------------------------- /test/src/core/bugless.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/bugless.spec.ts -------------------------------------------------------------------------------- /test/src/core/dependencies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/dependencies.spec.ts -------------------------------------------------------------------------------- /test/src/core/events.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/events.spec.ts -------------------------------------------------------------------------------- /test/src/core/experimental-dialects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/experimental-dialects.spec.ts -------------------------------------------------------------------------------- /test/src/core/jestMatcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/jestMatcher.spec.ts -------------------------------------------------------------------------------- /test/src/core/multi_connection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/multi_connection.spec.ts -------------------------------------------------------------------------------- /test/src/core/parameters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/parameters.spec.ts -------------------------------------------------------------------------------- /test/src/core/sql_source.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/sql_source.spec.ts -------------------------------------------------------------------------------- /test/src/core/streaming.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/streaming.spec.ts -------------------------------------------------------------------------------- /test/src/core/tags.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/core/tags.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/closeall.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/closeall.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/composite_sources.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/composite_sources.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/compound-atomic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/compound-atomic.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/db_filter_expressions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/db_filter_expressions.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/db_index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/db_index.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/expr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/expr.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/functions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/functions.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/havinglimit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/havinglimit.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/join.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/join.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/lenses.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/lenses.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/nomodel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/nomodel.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/orderby.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/orderby.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/problems.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/problems.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/sql_expressions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/sql_expressions.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/test-select.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/test-select.spec.ts -------------------------------------------------------------------------------- /test/src/databases/all/time.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/all/time.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/double_truncation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/double_truncation.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/functions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/functions.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/handexpr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/handexpr.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/injestion_time_partitioning.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/injestion_time_partitioning.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/joined_filters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/joined_filters.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/json.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/malloy_query.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/malloy_query.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/nested_source_table.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/nested_source_table.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/performance.skipped.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/performance.skipped.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/time.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/time.spec.ts -------------------------------------------------------------------------------- /test/src/databases/bigquery/wildcard_table_names.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/bigquery/wildcard_table_names.spec.ts -------------------------------------------------------------------------------- /test/src/databases/duckdb-all/duckdb.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/duckdb-all/duckdb.spec.ts -------------------------------------------------------------------------------- /test/src/databases/duckdb-all/materialization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/duckdb-all/materialization.spec.ts -------------------------------------------------------------------------------- /test/src/databases/duckdb/model_caching.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/duckdb/model_caching.spec.ts -------------------------------------------------------------------------------- /test/src/databases/duckdb/nested_source_table.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/duckdb/nested_source_table.spec.ts -------------------------------------------------------------------------------- /test/src/databases/duckdb/reference-id.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/duckdb/reference-id.spec.ts -------------------------------------------------------------------------------- /test/src/databases/duckdb/streaming.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/duckdb/streaming.spec.ts -------------------------------------------------------------------------------- /test/src/databases/postgres/postgres.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/postgres/postgres.spec.ts -------------------------------------------------------------------------------- /test/src/databases/presto-trino/presto-trino.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/presto-trino/presto-trino.spec.ts -------------------------------------------------------------------------------- /test/src/databases/shared/test_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/databases/shared/test_list.ts -------------------------------------------------------------------------------- /test/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/index.ts -------------------------------------------------------------------------------- /test/src/models/faa_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/models/faa_model.ts -------------------------------------------------------------------------------- /test/src/models/medicare_model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/models/medicare_model.ts -------------------------------------------------------------------------------- /test/src/render/__snapshots__/render.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/render/__snapshots__/render.spec.ts.snap -------------------------------------------------------------------------------- /test/src/render/render.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/render/render.spec.ts -------------------------------------------------------------------------------- /test/src/runtimes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/runtimes.ts -------------------------------------------------------------------------------- /test/src/test-select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/test-select.ts -------------------------------------------------------------------------------- /test/src/util/db-jest-matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/util/db-jest-matchers.ts -------------------------------------------------------------------------------- /test/src/util/db-matcher-support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/util/db-matcher-support.ts -------------------------------------------------------------------------------- /test/src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/src/util/index.ts -------------------------------------------------------------------------------- /test/trino/example_trino.malloy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/trino/example_trino.malloy -------------------------------------------------------------------------------- /test/trino/trino_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/trino/trino_start.sh -------------------------------------------------------------------------------- /test/trino/trino_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/trino/trino_stop.sh -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/types/jest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/test/types/jest.d.ts -------------------------------------------------------------------------------- /tsconfig.compile-no-emit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/tsconfig.compile-no-emit.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.packages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/tsconfig.packages.json -------------------------------------------------------------------------------- /vscode-extension/READMEmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malloydata/malloy/HEAD/vscode-extension/READMEmd --------------------------------------------------------------------------------