├── .cargo └── audit.toml ├── .github ├── actions │ ├── check │ │ └── action.yml │ └── setup │ │ └── action.yml └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── app ├── Cargo.toml ├── bin │ └── ask.rs ├── src │ ├── api │ │ ├── http.rs │ │ ├── mod.rs │ │ └── qa.rs │ ├── base │ │ ├── mod.rs │ │ └── string.rs │ ├── configs │ │ ├── config.rs │ │ ├── github.rs │ │ ├── log.rs │ │ ├── mod.rs │ │ └── qa.rs │ ├── github │ │ ├── github_comment.rs │ │ └── mod.rs │ ├── lib.rs │ └── qa │ │ ├── mod.rs │ │ ├── qa_db.rs │ │ ├── qa_embedding.rs │ │ └── qa_llm.rs └── tests │ ├── it │ ├── base │ │ ├── mod.rs │ │ └── string.rs │ └── main.rs │ └── testdata │ ├── 1.md │ ├── 2.md │ ├── hash.md │ ├── ignore_dir │ └── 3.md │ └── rust.rs ├── conf └── askbend.toml ├── data └── docs │ ├── dev │ ├── 30-subsystems │ │ └── 20-databend-meta │ │ │ └── version.md │ ├── policies │ │ ├── cla.md │ │ ├── code-of-conduct.md │ │ ├── index.md │ │ ├── license.md │ │ └── notice.md │ └── sidebars.js │ └── doc │ ├── 00-overview │ └── index.md │ ├── 01-guides │ └── index.md │ ├── 02-cloud │ ├── _category_.json │ └── index.md │ ├── 03-develop │ ├── 00-golang.md │ ├── 01-python.md │ ├── 02-nodejs.md │ ├── 03-java.md │ └── _category_.json │ ├── 10-deploy │ ├── 00-understanding-deployment-modes.md │ ├── 01-installing-databend.md │ ├── 02-deploying-databend.md │ ├── 03-expanding-to-a-databend-cluster.md │ ├── 04-deploying-databend-on-kubernetes.md │ ├── 05-deploying-local.md │ ├── 06-metasrv │ │ ├── 10-metasrv-deploy.md │ │ ├── 15-metasrv-config.md │ │ ├── 16-metasrv-grpc.md │ │ ├── 20-metasrv-add-remove-node.md │ │ ├── 30-metasrv-backup-restore.md │ │ ├── 40-metasrv-upgrade.md │ │ ├── 50-metasrv-metrics.md │ │ ├── 60-metasrv-status.md │ │ ├── 70-metasrv-cli-api.md │ │ └── _category_.json │ ├── 07-query │ │ ├── 10-query-config.md │ │ ├── 20-query-metrics.md │ │ └── _category_.json │ ├── 08-backup-restore │ │ ├── 10-backup-and-restore-schema.md │ │ └── _category_.json │ ├── 09-upgrade │ │ ├── 10-compatibility.md │ │ ├── 50-upgrade.md │ │ ├── 90-upgrade-1.0.md │ │ └── _category_.json │ └── _category_.json │ ├── 100-faq │ ├── 10-how-to-get-server-logs.md │ ├── 20-how-to-tracing.md │ └── _category_.json │ ├── 11-integrations │ ├── 00-api │ │ ├── 00-rest.md │ │ ├── 01-mysql-handler.md │ │ ├── 02-clickhouse-handler.md │ │ ├── 03-streaming-load.md │ │ ├── 10-put-to-stage.md │ │ └── _category_.json │ ├── 10-data-tool │ │ ├── 00-vector.md │ │ ├── 01-airbyte.md │ │ └── _category_.json │ ├── 20-gui-tool │ │ ├── 00-jupyter.md │ │ ├── 02-grafana.md │ │ ├── 03-metabase.md │ │ ├── 04-redash.md │ │ └── _category_.json │ ├── 30-access-tool │ │ ├── 00-mysql.md │ │ ├── 01-bendsql.md │ │ ├── 02-jdbc.md │ │ └── _category_.json │ └── _category_.json │ ├── 12-load-data │ ├── 00-stage.md │ ├── 01-s3.md │ ├── 02-local.md │ ├── 04-http.md │ ├── 05-querying-stage.md │ ├── 06-data-load-transform.md │ ├── _category_.json │ └── index.md │ ├── 12-unload-data │ ├── _category_.json │ └── index.md │ ├── 13-monitor │ ├── _category_.json │ ├── jaeger.md │ ├── prometheus-and-granafa.md │ └── sentry.md │ ├── 13-sql-reference │ ├── 10-data-types │ │ ├── 00-data-type-logical-types.md │ │ ├── 10-data-type-numeric-types.md │ │ ├── 11-data-type-decimal-types.md │ │ ├── 20-data-type-time-date-types.md │ │ ├── 30-data-type-string-types.md │ │ ├── 40-data-type-array-types.md │ │ ├── 41-data-type-tuple-types.md │ │ ├── 42-data-type-map.md │ │ ├── 43-data-type-variant.md │ │ ├── 60-data-type-nullable-types.md │ │ ├── 70-data-type-conversion.md │ │ ├── _category_.json │ │ └── index.md │ ├── 20-system-tables │ │ ├── _category_.json │ │ ├── system-build-options.md │ │ ├── system-clusters.md │ │ ├── system-columns.md │ │ ├── system-configs.md │ │ ├── system-contributors.md │ │ ├── system-credits.md │ │ ├── system-functions.md │ │ ├── system-metrics.md │ │ ├── system-numbers.md │ │ ├── system-query-log.md │ │ ├── system-settings.md │ │ ├── system-table-functions.md │ │ └── system-tracing.md │ ├── 30-table-engines │ │ ├── 00-fuse.md │ │ ├── 01-memory.md │ │ ├── 02-random.md │ │ └── _category_.json │ ├── 40-sql-identifiers.md │ ├── 50-file-format-options.md │ └── _category_.json │ ├── 14-sql-commands │ ├── 00-ddl │ │ ├── 10-database │ │ │ ├── _category_.json │ │ │ ├── ddl-alter-database.md │ │ │ ├── ddl-create-database.md │ │ │ └── ddl-drop-database.md │ │ ├── 100-file-format │ │ │ ├── 01-ddl-create-file-format.md │ │ │ ├── 02-ddl-drop-file-format.md │ │ │ ├── 03-ddl-show-file-formats.md │ │ │ └── _category_.json │ │ ├── 20-table │ │ │ ├── 10-ddl-create-table.md │ │ │ ├── 20-ddl-drop-table.md │ │ │ ├── 21-ddl-undrop-table.md │ │ │ ├── 30-ddl-rename-table.md │ │ │ ├── 40-ddl-truncate-table.md │ │ │ ├── 50-describe-table.md │ │ │ ├── 60-optimize-table.md │ │ │ ├── 70-ddl-restore-table.md │ │ │ ├── 80-analyze-table.md │ │ │ ├── 90-alter-table-column.md │ │ │ └── _category_.json │ │ ├── 30-user │ │ │ ├── 01-user-create-user.md │ │ │ ├── 02-user-drop-user.md │ │ │ ├── 02-user-show-users.md │ │ │ ├── 03-user-alter-user.md │ │ │ ├── 04-user-create-role.md │ │ │ ├── 05-user-drop-role.md │ │ │ ├── 10-grant-privileges.md │ │ │ ├── 11-revoke-privileges.md │ │ │ ├── 20-grant-role.md │ │ │ ├── 21-revoke-role.md │ │ │ ├── 22-show-grants.md │ │ │ └── _category_.json │ │ ├── 40-stage │ │ │ ├── 01-ddl-create-stage.md │ │ │ ├── 02-ddl-drop-stage.md │ │ │ ├── 03-ddl-desc-stage.md │ │ │ ├── 04-ddl-list-stage.md │ │ │ ├── 05-ddl-remove-stage.md │ │ │ ├── 06-ddl-show-stages.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ ├── 50-udf │ │ │ ├── _category_.json │ │ │ ├── ddl-alter-function.md │ │ │ ├── ddl-create-function.md │ │ │ └── ddl-drop-function.md │ │ ├── 60-view │ │ │ ├── _category_.json │ │ │ ├── ddl-alter-view.md │ │ │ ├── ddl-create-view.md │ │ │ └── ddl-drop-view.md │ │ ├── 70-clusterkey │ │ │ ├── _category_.json │ │ │ ├── dml-alter-cluster-key.md │ │ │ ├── dml-drop-cluster-key.md │ │ │ ├── dml-recluster-table.md │ │ │ ├── dml-set-cluster-key.md │ │ │ └── index.md │ │ ├── 80-presign │ │ │ ├── _category_.json │ │ │ └── presign.md │ │ ├── 90-share │ │ │ ├── 01-create-share.md │ │ │ ├── 02-drop-share.md │ │ │ ├── 03-alter-share.md │ │ │ ├── 04-desc-share.md │ │ │ ├── 05-show-shares.md │ │ │ ├── 06-grant-privilege.md │ │ │ ├── 07-revoke-privilege.md │ │ │ ├── 08-show-grants.md │ │ │ ├── _category_.json │ │ │ └── index.md │ │ └── _category_.json │ ├── 10-dml │ │ ├── _category_.json │ │ ├── dml-copy-into-location.md │ │ ├── dml-copy-into-table.md │ │ ├── dml-delete-from.md │ │ ├── dml-insert.md │ │ ├── dml-replace.md │ │ └── dml-update.md │ ├── 20-query-syntax │ │ ├── 01-query-select.md │ │ ├── 02-query-with.md │ │ ├── 03-query-at.md │ │ ├── 04-query-join.md │ │ ├── 05-query-pivot.md │ │ ├── 05-query-unpivot.md │ │ ├── 06-query-group-by.md │ │ ├── 07-query-group-by-grouping-sets.md │ │ ├── 08-query-group-by-cube.md │ │ ├── 09-query-group-by-rollup.md │ │ ├── 20-query-json-path.md │ │ ├── _category_.json │ │ └── index.md │ ├── 30-query-operators │ │ ├── _category_.json │ │ ├── operators-set.md │ │ └── operators-subquery.md │ ├── 40-show │ │ ├── _category_.json │ │ ├── show-create-database.md │ │ ├── show-create-table.md │ │ ├── show-databases.md │ │ ├── show-full-columns.md │ │ ├── show-functions.md │ │ ├── show-metrics.md │ │ ├── show-processlist.md │ │ ├── show-settings.md │ │ ├── show-table-functions.md │ │ ├── show-table-status.md │ │ ├── show-tables.md │ │ └── show-users.md │ ├── 50-list │ │ ├── _category_.json │ │ └── list-stage.md │ ├── 60-kill │ │ ├── _category_.json │ │ └── kill-query.md │ ├── 80-setting-cmds │ │ ├── 01-set-global.md │ │ ├── 02-unset.md │ │ ├── _category_.json │ │ └── show-settings.md │ ├── 90-explain-cmds │ │ ├── _category_.json │ │ ├── explain-analyze.md │ │ ├── explain-ast.md │ │ ├── explain-fragments.md │ │ ├── explain-memo.md │ │ ├── explain-raw.md │ │ ├── explain-syntax.md │ │ └── explain.md │ └── _category_.json │ ├── 15-sql-functions │ ├── 01-arithmetics-operators │ │ ├── _category_.json │ │ └── index.md │ ├── 02-comparisons-operators │ │ ├── _category_.json │ │ └── index.md │ ├── 03-logic-operators │ │ ├── _category_.json │ │ └── index.md │ ├── 04-array-functions │ │ ├── _category_.json │ │ └── index.md │ ├── 10-aggregate-functions │ │ ├── _category_.json │ │ ├── aggregate-any.md │ │ ├── aggregate-approx-count-distinct.md │ │ ├── aggregate-arg-max.md │ │ ├── aggregate-arg-min.md │ │ ├── aggregate-avg-if.md │ │ ├── aggregate-avg.md │ │ ├── aggregate-count-distinct.md │ │ ├── aggregate-count-if.md │ │ ├── aggregate-count.md │ │ ├── aggregate-covar-pop.md │ │ ├── aggregate-covar-samp.md │ │ ├── aggregate-list.md │ │ ├── aggregate-max-if.md │ │ ├── aggregate-max.md │ │ ├── aggregate-median.md │ │ ├── aggregate-min-if.md │ │ ├── aggregate-min.md │ │ ├── aggregate-quantile.md │ │ ├── aggregate-retention.md │ │ ├── aggregate-stddev-pop.md │ │ ├── aggregate-stddev-samp.md │ │ ├── aggregate-sum-if.md │ │ ├── aggregate-sum.md │ │ ├── aggregate-windowfunnel.md │ │ └── index.md │ ├── 11-conditional-functions │ │ ├── _category_.json │ │ └── index.md │ ├── 110-semi-structured-functions │ │ ├── _category_.json │ │ ├── as_type.md │ │ ├── check_json.md │ │ ├── get.md │ │ ├── get_ignore_case.md │ │ ├── get_path.md │ │ ├── json_extract_path_text.md │ │ ├── object_keys.md │ │ └── parse_json.md │ ├── 111-system-functions │ │ ├── _category_.json │ │ ├── clustering_information.md │ │ ├── fuse_block.md │ │ ├── fuse_segment.md │ │ ├── fuse_snapshot.md │ │ └── fuse_statistic.md │ ├── 112-table-functions │ │ ├── _category_.json │ │ ├── infer_schema.md │ │ ├── result_scan.md │ │ └── stage_table_function.md │ ├── 120-other-functions │ │ ├── _category_.json │ │ ├── assume_not_null.md │ │ ├── coalesce.md │ │ ├── exists.md │ │ ├── grouping.md │ │ ├── humanize-number.md │ │ ├── humanize-size.md │ │ ├── ignore.md │ │ ├── to_nullable.md │ │ └── typeof.md │ ├── 121-test-functions │ │ ├── _category_.json │ │ └── sleep.md │ ├── 122-window-functions │ │ ├── _category_.json │ │ └── aggregate-window-functions.md │ ├── 130-geo-functions │ │ ├── _category_.json │ │ └── index.md │ ├── 20-numeric-functions │ │ ├── _category_.json │ │ └── index.md │ ├── 30-datetime-functions │ │ ├── _category_.json │ │ ├── addinterval.md │ │ ├── dateadd.md │ │ ├── datesub.md │ │ ├── datetrunc.md │ │ ├── now.md │ │ ├── subtractinterval.md │ │ ├── timeslot.md │ │ ├── timezone.md │ │ ├── toMonth.md │ │ ├── todate.md │ │ ├── todatetime.md │ │ ├── today.md │ │ ├── todayofmonth.md │ │ ├── todayofweek.md │ │ ├── todayofyear.md │ │ ├── tohour.md │ │ ├── tominute.md │ │ ├── tomonday.md │ │ ├── tomorrow.md │ │ ├── tosecond.md │ │ ├── tostartofday.md │ │ ├── tostartoffifteenminutes.md │ │ ├── tostartoffiveminutes.md │ │ ├── tostartofhour.md │ │ ├── tostartofisoyear.md │ │ ├── tostartofminute.md │ │ ├── tostartofmonth.md │ │ ├── tostartofquarter.md │ │ ├── tostartofsecond.md │ │ ├── tostartoftenminutes.md │ │ ├── tostartofweek.md │ │ ├── tostartofyear.md │ │ ├── totimestamp.md │ │ ├── toyear.md │ │ ├── toyyyymm.md │ │ ├── toyyyymmdd.md │ │ ├── toyyyymmddhhmmss.md │ │ └── yesterday.md │ ├── 40-string-functions │ │ ├── _category_.json │ │ ├── ascii.md │ │ ├── bin.md │ │ ├── bit_length.md │ │ ├── char.md │ │ ├── char_length.md │ │ ├── character_length.md │ │ ├── concat.md │ │ ├── concat_ws.md │ │ ├── from_base64.md │ │ ├── hex.md │ │ ├── insert.md │ │ ├── instr.md │ │ ├── lcase.md │ │ ├── left.md │ │ ├── length.md │ │ ├── like.md │ │ ├── locate.md │ │ ├── lower.md │ │ ├── lpad.md │ │ ├── mid.md │ │ ├── not_like.md │ │ ├── not_regexp.md │ │ ├── not_rlike.md │ │ ├── oct.md │ │ ├── octet_length.md │ │ ├── ord.md │ │ ├── position.md │ │ ├── quote.md │ │ ├── regexp.md │ │ ├── regexp_instr.md │ │ ├── regexp_like.md │ │ ├── regexp_replace.md │ │ ├── regexp_substr.md │ │ ├── repeat.md │ │ ├── replace.md │ │ ├── reverse.md │ │ ├── right.md │ │ ├── rlike.md │ │ ├── rpad.md │ │ ├── soundex.md │ │ ├── space.md │ │ ├── strcmp.md │ │ ├── substr.md │ │ ├── substring.md │ │ ├── to_base64.md │ │ ├── trim.md │ │ ├── ucase.md │ │ ├── unhex.md │ │ └── upper.md │ ├── 60-conversion-functions │ │ ├── _category_.json │ │ └── index.md │ ├── 61-ai-functions │ │ ├── 01-ai-to-sql.md │ │ ├── _category_.json │ │ └── index.md │ ├── 70-hash-functions │ │ ├── _category_.json │ │ └── index.md │ ├── 80-uuid-functions │ │ ├── _category_.json │ │ └── index.md │ ├── 81-ip-address-functions │ │ ├── _category_.json │ │ ├── inet_aton.md │ │ ├── inet_ntoa.md │ │ ├── ipv4_num_to_string.md │ │ ├── ipv4_string_to_num.md │ │ ├── try_inet_aton.md │ │ ├── try_inet_ntoa.md │ │ ├── try_ipv4_num_to_string.md │ │ └── try_ipv4_string_to_num.md │ ├── 90-context-functions │ │ ├── _category_.json │ │ └── index.md │ └── _category_.json │ ├── 16-security │ ├── 00-access-control │ │ ├── 10-access-control-privileges.rs │ │ └── _category_.json │ └── _category_.json │ ├── 21-use-cases │ ├── 01-analyze-ontime-with-databend-on-ec2-and-s3.md │ ├── 02-analyze-nginx-logs-with-databend-and-vector.md │ ├── 03-analyze-user-retention-with-databend.md │ ├── 04-analyze-funnel-with-databend.md │ ├── 05-analyze-hits-dataset-with-databend.md │ └── _category_.json │ ├── 70-performance │ └── _category_.json │ ├── 80-releases │ ├── 00-release-channels.md │ ├── 96-v1.0.0.md │ ├── 97-v0.9.0.md │ ├── 98-v0.8.0.md │ ├── 99-v0.7.0.md │ └── _category_.json │ ├── 90-contributing │ ├── 00-roadmap.md │ ├── 01-rfcs │ │ ├── 00000000-example.md │ │ ├── 20210815-data-shuffle.md │ │ ├── 20210913-join-framework-design.md │ │ ├── 20210914-new-sql-planner-framework.md │ │ ├── 20211202-plan-expression.md │ │ ├── 20211203-performance-test.md │ │ ├── 20220117-new-datavalues-system.md │ │ ├── 20220304-semi-structured-data-types.md │ │ ├── 20220425-new_sql_logic_test_framework.md │ │ ├── 20220512-config-backward-compatibility.md │ │ ├── 20220530-user-friendly-releases.md │ │ ├── 20220704-presign.md │ │ ├── 20220721-new-logging.md │ │ ├── 20220725-cache.md │ │ ├── 20220728-metasrv-txn.md │ │ ├── 20220728-metasrv-watch.md │ │ ├── 20220729-recluster.md │ │ ├── 20220805-deprecate-clickhouse-tcp-support.md │ │ ├── 20220805-json-optimization.md │ │ ├── 20220809-share.md │ │ ├── 20220909-idempotent-copy.md │ │ ├── 20221013-iceberg-catalog.md │ │ ├── 20221017-multiple-catalog.md │ │ ├── 20221028-user-stage.md │ │ ├── 20230213-query-result-cache.md │ │ ├── 20230307-stage-with-schema.md │ │ ├── 20230308-transform-during-load.md │ │ └── _category_.json │ ├── 02-building-from-source.md │ ├── 03-good-pr.md │ ├── 04-routine-maintenance.md │ ├── 05-benchmarking.md │ ├── 06-how-to-benchmark-with-hyperfine.md │ ├── 07-how-to-profiling.md │ ├── 08-how-to-write-scalar-functions.md │ ├── 09-how-to-write-aggregate-functions.md │ ├── 10-how-to-write-a-system-table.md │ └── _category_.json │ └── sidebars.js ├── rust-toolchain.toml ├── rustfmt.toml ├── schema └── qa_table.sql ├── scripts ├── ci │ └── ci-run-unit-tests.sh └── setup │ ├── dev_setup.sh │ ├── rust-toolchain.toml │ └── rust-tools.txt └── web ├── .env ├── .env.production ├── .eslintrc.cjs ├── .gitignore ├── fetch-repo-info.js ├── index.html ├── package.json ├── public └── vite.svg ├── src ├── App.tsx ├── api │ └── index.ts ├── assets │ ├── constant │ │ └── index.ts │ ├── css │ │ └── mixin.scss │ ├── json │ │ └── preview-question.json │ ├── react.svg │ └── svg │ │ ├── check.tsx │ │ ├── databend.tsx │ │ ├── github.tsx │ │ ├── link.tsx │ │ ├── right.tsx │ │ ├── send.tsx │ │ └── time.tsx ├── components │ ├── Banner │ │ ├── banner.tsx │ │ └── styles.module.scss │ ├── Card │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Entry │ │ └── index.tsx │ ├── Error │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Footer │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Input │ │ ├── count-length.tsx │ │ ├── examples.tsx │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Introduction │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Loading │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Markdown │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── ProcuctName │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── Result │ │ ├── index.tsx │ │ ├── result-card.tsx │ │ ├── result-history-card.tsx │ │ ├── styles.module.scss │ │ └── success-tip.tsx │ └── WaitCard │ │ ├── index.tsx │ │ └── styles.module.scss ├── hooks │ └── useGetScrollInfo.tsx ├── index.scss ├── main.tsx ├── state │ ├── hooks │ │ ├── useDatabendDispatch.ts │ │ └── useGetResultsState.ts │ └── redux │ │ ├── actions │ │ └── result.ts │ │ ├── constant │ │ └── result.ts │ │ ├── dispatch │ │ └── result.tsx │ │ ├── reducers │ │ ├── result.ts │ │ └── rootReducer.ts │ │ └── store │ │ └── index.ts ├── types │ └── index.ts ├── utils │ ├── device-type.ts │ └── tools.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json ├── vite.config.ts └── yarn.lock /.cargo/audit.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/.cargo/audit.toml -------------------------------------------------------------------------------- /.github/actions/check/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/.github/actions/check/action.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | resolver = "2" 3 | members = ["app"] 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/README.md -------------------------------------------------------------------------------- /app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/Cargo.toml -------------------------------------------------------------------------------- /app/bin/ask.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/bin/ask.rs -------------------------------------------------------------------------------- /app/src/api/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/api/http.rs -------------------------------------------------------------------------------- /app/src/api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/api/mod.rs -------------------------------------------------------------------------------- /app/src/api/qa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/api/qa.rs -------------------------------------------------------------------------------- /app/src/base/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/base/mod.rs -------------------------------------------------------------------------------- /app/src/base/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/base/string.rs -------------------------------------------------------------------------------- /app/src/configs/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/configs/config.rs -------------------------------------------------------------------------------- /app/src/configs/github.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/configs/github.rs -------------------------------------------------------------------------------- /app/src/configs/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/configs/log.rs -------------------------------------------------------------------------------- /app/src/configs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/configs/mod.rs -------------------------------------------------------------------------------- /app/src/configs/qa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/configs/qa.rs -------------------------------------------------------------------------------- /app/src/github/github_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/github/github_comment.rs -------------------------------------------------------------------------------- /app/src/github/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/github/mod.rs -------------------------------------------------------------------------------- /app/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/lib.rs -------------------------------------------------------------------------------- /app/src/qa/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/qa/mod.rs -------------------------------------------------------------------------------- /app/src/qa/qa_db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/qa/qa_db.rs -------------------------------------------------------------------------------- /app/src/qa/qa_embedding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/qa/qa_embedding.rs -------------------------------------------------------------------------------- /app/src/qa/qa_llm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/src/qa/qa_llm.rs -------------------------------------------------------------------------------- /app/tests/it/base/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/tests/it/base/mod.rs -------------------------------------------------------------------------------- /app/tests/it/base/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/tests/it/base/string.rs -------------------------------------------------------------------------------- /app/tests/it/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/tests/it/main.rs -------------------------------------------------------------------------------- /app/tests/testdata/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/tests/testdata/1.md -------------------------------------------------------------------------------- /app/tests/testdata/2.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/testdata/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/tests/testdata/hash.md -------------------------------------------------------------------------------- /app/tests/testdata/ignore_dir/3.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests/testdata/rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/app/tests/testdata/rust.rs -------------------------------------------------------------------------------- /conf/askbend.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/conf/askbend.toml -------------------------------------------------------------------------------- /data/docs/dev/30-subsystems/20-databend-meta/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/dev/30-subsystems/20-databend-meta/version.md -------------------------------------------------------------------------------- /data/docs/dev/policies/cla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/dev/policies/cla.md -------------------------------------------------------------------------------- /data/docs/dev/policies/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/dev/policies/code-of-conduct.md -------------------------------------------------------------------------------- /data/docs/dev/policies/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/dev/policies/index.md -------------------------------------------------------------------------------- /data/docs/dev/policies/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/dev/policies/license.md -------------------------------------------------------------------------------- /data/docs/dev/policies/notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/dev/policies/notice.md -------------------------------------------------------------------------------- /data/docs/dev/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/dev/sidebars.js -------------------------------------------------------------------------------- /data/docs/doc/00-overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/00-overview/index.md -------------------------------------------------------------------------------- /data/docs/doc/01-guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/01-guides/index.md -------------------------------------------------------------------------------- /data/docs/doc/02-cloud/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Databend Cloud" 3 | } 4 | -------------------------------------------------------------------------------- /data/docs/doc/02-cloud/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/02-cloud/index.md -------------------------------------------------------------------------------- /data/docs/doc/03-develop/00-golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/03-develop/00-golang.md -------------------------------------------------------------------------------- /data/docs/doc/03-develop/01-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/03-develop/01-python.md -------------------------------------------------------------------------------- /data/docs/doc/03-develop/02-nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/03-develop/02-nodejs.md -------------------------------------------------------------------------------- /data/docs/doc/03-develop/03-java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/03-develop/03-java.md -------------------------------------------------------------------------------- /data/docs/doc/03-develop/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/03-develop/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/00-understanding-deployment-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/00-understanding-deployment-modes.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/01-installing-databend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/01-installing-databend.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/02-deploying-databend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/02-deploying-databend.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/03-expanding-to-a-databend-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/03-expanding-to-a-databend-cluster.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/04-deploying-databend-on-kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/04-deploying-databend-on-kubernetes.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/05-deploying-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/05-deploying-local.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/10-metasrv-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/10-metasrv-deploy.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/15-metasrv-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/15-metasrv-config.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/16-metasrv-grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/16-metasrv-grpc.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/20-metasrv-add-remove-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/20-metasrv-add-remove-node.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/30-metasrv-backup-restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/30-metasrv-backup-restore.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/40-metasrv-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/40-metasrv-upgrade.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/50-metasrv-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/50-metasrv-metrics.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/60-metasrv-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/60-metasrv-status.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/70-metasrv-cli-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/70-metasrv-cli-api.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/06-metasrv/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/06-metasrv/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/07-query/10-query-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/07-query/10-query-config.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/07-query/20-query-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/07-query/20-query-metrics.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/07-query/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/07-query/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/08-backup-restore/10-backup-and-restore-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/08-backup-restore/10-backup-and-restore-schema.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/08-backup-restore/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/08-backup-restore/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/09-upgrade/10-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/09-upgrade/10-compatibility.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/09-upgrade/50-upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/09-upgrade/50-upgrade.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/09-upgrade/90-upgrade-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/09-upgrade/90-upgrade-1.0.md -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/09-upgrade/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/09-upgrade/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/10-deploy/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/10-deploy/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/100-faq/10-how-to-get-server-logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/100-faq/10-how-to-get-server-logs.md -------------------------------------------------------------------------------- /data/docs/doc/100-faq/20-how-to-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/100-faq/20-how-to-tracing.md -------------------------------------------------------------------------------- /data/docs/doc/100-faq/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/100-faq/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/00-api/00-rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/00-api/00-rest.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/00-api/01-mysql-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/00-api/01-mysql-handler.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/00-api/02-clickhouse-handler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/00-api/02-clickhouse-handler.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/00-api/03-streaming-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/00-api/03-streaming-load.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/00-api/10-put-to-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/00-api/10-put-to-stage.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/00-api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/00-api/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/10-data-tool/00-vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/10-data-tool/00-vector.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/10-data-tool/01-airbyte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/10-data-tool/01-airbyte.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/10-data-tool/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/10-data-tool/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/20-gui-tool/00-jupyter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/20-gui-tool/00-jupyter.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/20-gui-tool/02-grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/20-gui-tool/02-grafana.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/20-gui-tool/03-metabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/20-gui-tool/03-metabase.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/20-gui-tool/04-redash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/20-gui-tool/04-redash.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/20-gui-tool/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/20-gui-tool/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/30-access-tool/00-mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/30-access-tool/00-mysql.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/30-access-tool/01-bendsql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/30-access-tool/01-bendsql.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/30-access-tool/02-jdbc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/30-access-tool/02-jdbc.md -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/30-access-tool/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/30-access-tool/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/11-integrations/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/11-integrations/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/00-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-load-data/00-stage.md -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/01-s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-load-data/01-s3.md -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/02-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-load-data/02-local.md -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/04-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-load-data/04-http.md -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/05-querying-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-load-data/05-querying-stage.md -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/06-data-load-transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-load-data/06-data-load-transform.md -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Loading Data" 3 | } 4 | -------------------------------------------------------------------------------- /data/docs/doc/12-load-data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-load-data/index.md -------------------------------------------------------------------------------- /data/docs/doc/12-unload-data/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Unloading Data" 3 | } 4 | -------------------------------------------------------------------------------- /data/docs/doc/12-unload-data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/12-unload-data/index.md -------------------------------------------------------------------------------- /data/docs/doc/13-monitor/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Monitor" 3 | } 4 | -------------------------------------------------------------------------------- /data/docs/doc/13-monitor/jaeger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-monitor/jaeger.md -------------------------------------------------------------------------------- /data/docs/doc/13-monitor/prometheus-and-granafa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-monitor/prometheus-and-granafa.md -------------------------------------------------------------------------------- /data/docs/doc/13-monitor/sentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-monitor/sentry.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/00-data-type-logical-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/00-data-type-logical-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/10-data-type-numeric-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/10-data-type-numeric-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/11-data-type-decimal-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/11-data-type-decimal-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/20-data-type-time-date-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/20-data-type-time-date-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/30-data-type-string-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/30-data-type-string-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/40-data-type-array-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/40-data-type-array-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/41-data-type-tuple-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/41-data-type-tuple-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/42-data-type-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/42-data-type-map.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/43-data-type-variant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/43-data-type-variant.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/60-data-type-nullable-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/60-data-type-nullable-types.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/70-data-type-conversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/70-data-type-conversion.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Data Types" 3 | } 4 | -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/10-data-types/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/10-data-types/index.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-build-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-build-options.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-clusters.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-columns.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-configs.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-contributors.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-credits.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-functions.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-metrics.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-numbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-numbers.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-query-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-query-log.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-settings.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-table-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-table-functions.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/20-system-tables/system-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/20-system-tables/system-tracing.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/30-table-engines/00-fuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/30-table-engines/00-fuse.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/30-table-engines/01-memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/30-table-engines/01-memory.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/30-table-engines/02-random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/30-table-engines/02-random.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/30-table-engines/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Table Engines" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/40-sql-identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/40-sql-identifiers.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/50-file-format-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/50-file-format-options.md -------------------------------------------------------------------------------- /data/docs/doc/13-sql-reference/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/13-sql-reference/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/10-database/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/10-database/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/10-database/ddl-alter-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/10-database/ddl-alter-database.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/10-database/ddl-create-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/10-database/ddl-create-database.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/10-database/ddl-drop-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/10-database/ddl-drop-database.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/100-file-format/01-ddl-create-file-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/100-file-format/01-ddl-create-file-format.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/100-file-format/02-ddl-drop-file-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/100-file-format/02-ddl-drop-file-format.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/100-file-format/03-ddl-show-file-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/100-file-format/03-ddl-show-file-formats.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/100-file-format/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/100-file-format/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/10-ddl-create-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/10-ddl-create-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/20-ddl-drop-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/20-ddl-drop-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/21-ddl-undrop-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/21-ddl-undrop-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/30-ddl-rename-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/30-ddl-rename-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/40-ddl-truncate-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/40-ddl-truncate-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/50-describe-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/50-describe-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/60-optimize-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/60-optimize-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/70-ddl-restore-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/70-ddl-restore-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/80-analyze-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/80-analyze-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/90-alter-table-column.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/90-alter-table-column.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/20-table/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/20-table/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/01-user-create-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/01-user-create-user.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/02-user-drop-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/02-user-drop-user.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/02-user-show-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/02-user-show-users.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/03-user-alter-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/03-user-alter-user.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/04-user-create-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/04-user-create-role.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/05-user-drop-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/05-user-drop-role.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/10-grant-privileges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/10-grant-privileges.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/11-revoke-privileges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/11-revoke-privileges.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/20-grant-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/20-grant-role.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/21-revoke-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/21-revoke-role.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/22-show-grants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/22-show-grants.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/30-user/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/30-user/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/01-ddl-create-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/40-stage/01-ddl-create-stage.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/02-ddl-drop-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/40-stage/02-ddl-drop-stage.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/03-ddl-desc-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/40-stage/03-ddl-desc-stage.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/04-ddl-list-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/40-stage/04-ddl-list-stage.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/05-ddl-remove-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/40-stage/05-ddl-remove-stage.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/06-ddl-show-stages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/40-stage/06-ddl-show-stages.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Stage" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/40-stage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/40-stage/index.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/50-udf/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/50-udf/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/50-udf/ddl-alter-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/50-udf/ddl-alter-function.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/50-udf/ddl-create-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/50-udf/ddl-create-function.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/50-udf/ddl-drop-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/50-udf/ddl-drop-function.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/60-view/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/60-view/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/60-view/ddl-alter-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/60-view/ddl-alter-view.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/60-view/ddl-create-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/60-view/ddl-create-view.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/60-view/ddl-drop-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/60-view/ddl-drop-view.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Cluster Key" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-alter-cluster-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-alter-cluster-key.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-drop-cluster-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-drop-cluster-key.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-recluster-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-recluster-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-set-cluster-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/dml-set-cluster-key.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/70-clusterkey/index.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/80-presign/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/80-presign/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/80-presign/presign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/80-presign/presign.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/01-create-share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/01-create-share.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/02-drop-share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/02-drop-share.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/03-alter-share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/03-alter-share.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/04-desc-share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/04-desc-share.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/05-show-shares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/05-show-shares.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/06-grant-privilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/06-grant-privilege.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/07-revoke-privilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/07-revoke-privilege.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/08-show-grants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/08-show-grants.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Share" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/90-share/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/90-share/index.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/00-ddl/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/00-ddl/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/10-dml/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/10-dml/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/10-dml/dml-copy-into-location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/10-dml/dml-copy-into-location.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/10-dml/dml-copy-into-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/10-dml/dml-copy-into-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/10-dml/dml-delete-from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/10-dml/dml-delete-from.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/10-dml/dml-insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/10-dml/dml-insert.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/10-dml/dml-replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/10-dml/dml-replace.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/10-dml/dml-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/10-dml/dml-update.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/01-query-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/01-query-select.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/02-query-with.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/02-query-with.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/03-query-at.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/03-query-at.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/04-query-join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/04-query-join.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/05-query-pivot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/05-query-pivot.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/05-query-unpivot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/05-query-unpivot.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/06-query-group-by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/06-query-group-by.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/07-query-group-by-grouping-sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/07-query-group-by-grouping-sets.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/08-query-group-by-cube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/08-query-group-by-cube.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/09-query-group-by-rollup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/09-query-group-by-rollup.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/20-query-json-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/20-query-json-path.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Query Syntax" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/20-query-syntax/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/20-query-syntax/index.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/30-query-operators/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/30-query-operators/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/30-query-operators/operators-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/30-query-operators/operators-set.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/30-query-operators/operators-subquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/30-query-operators/operators-subquery.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-create-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-create-database.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-create-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-create-table.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-databases.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-full-columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-full-columns.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-functions.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-metrics.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-processlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-processlist.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-settings.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-table-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-table-functions.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-table-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-table-status.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-tables.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/40-show/show-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/40-show/show-users.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/50-list/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/50-list/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/50-list/list-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/50-list/list-stage.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/60-kill/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/60-kill/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/60-kill/kill-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/60-kill/kill-query.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/80-setting-cmds/01-set-global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/80-setting-cmds/01-set-global.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/80-setting-cmds/02-unset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/80-setting-cmds/02-unset.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/80-setting-cmds/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/80-setting-cmds/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/80-setting-cmds/show-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/80-setting-cmds/show-settings.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/explain-analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/explain-analyze.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/explain-ast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/explain-ast.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/explain-fragments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/explain-fragments.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/explain-memo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/explain-memo.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/explain-raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/explain-raw.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/explain-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/explain-syntax.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/90-explain-cmds/explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/90-explain-cmds/explain.md -------------------------------------------------------------------------------- /data/docs/doc/14-sql-commands/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/14-sql-commands/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/01-arithmetics-operators/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/01-arithmetics-operators/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/01-arithmetics-operators/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/01-arithmetics-operators/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/02-comparisons-operators/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/02-comparisons-operators/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/02-comparisons-operators/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/02-comparisons-operators/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/03-logic-operators/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/03-logic-operators/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/03-logic-operators/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/03-logic-operators/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/04-array-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/04-array-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/04-array-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/04-array-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Aggregate Functions" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-any.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-any.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-approx-count-distinct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-approx-count-distinct.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-arg-max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-arg-max.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-arg-min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-arg-min.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-avg-if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-avg-if.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-avg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-avg.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-count-distinct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-count-distinct.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-count-if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-count-if.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-count.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-covar-pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-covar-pop.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-covar-samp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-covar-samp.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-list.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-max-if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-max-if.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-max.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-median.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-median.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-min-if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-min-if.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-min.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-quantile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-quantile.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-retention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-retention.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-stddev-pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-stddev-pop.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-stddev-samp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-stddev-samp.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-sum-if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-sum-if.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-sum.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-windowfunnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/aggregate-windowfunnel.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/10-aggregate-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/10-aggregate-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/11-conditional-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/11-conditional-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/11-conditional-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/11-conditional-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/as_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/as_type.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/check_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/check_json.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/get.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/get_ignore_case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/get_ignore_case.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/get_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/get_path.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/json_extract_path_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/json_extract_path_text.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/object_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/object_keys.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/110-semi-structured-functions/parse_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/110-semi-structured-functions/parse_json.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/111-system-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/111-system-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/111-system-functions/clustering_information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/111-system-functions/clustering_information.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/111-system-functions/fuse_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/111-system-functions/fuse_block.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/111-system-functions/fuse_segment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/111-system-functions/fuse_segment.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/111-system-functions/fuse_snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/111-system-functions/fuse_snapshot.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/111-system-functions/fuse_statistic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/111-system-functions/fuse_statistic.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/112-table-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/112-table-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/112-table-functions/infer_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/112-table-functions/infer_schema.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/112-table-functions/result_scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/112-table-functions/result_scan.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/112-table-functions/stage_table_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/112-table-functions/stage_table_function.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/assume_not_null.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/assume_not_null.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/coalesce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/coalesce.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/exists.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/grouping.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/humanize-number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/humanize-number.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/humanize-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/humanize-size.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/ignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/ignore.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/to_nullable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/to_nullable.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/120-other-functions/typeof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/120-other-functions/typeof.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/121-test-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/121-test-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/121-test-functions/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/121-test-functions/sleep.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/122-window-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/122-window-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/122-window-functions/aggregate-window-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/122-window-functions/aggregate-window-functions.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/130-geo-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Geography Functions" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/130-geo-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/130-geo-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/20-numeric-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Numeric Functions" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/20-numeric-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/20-numeric-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/addinterval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/addinterval.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/dateadd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/dateadd.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/datesub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/datesub.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/datetrunc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/datetrunc.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/now.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/now.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/subtractinterval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/subtractinterval.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/timeslot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/timeslot.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/timezone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/timezone.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/toMonth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/toMonth.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/todate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/todate.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/todatetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/todatetime.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/today.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/today.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/todayofmonth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/todayofmonth.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/todayofweek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/todayofweek.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/todayofyear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/todayofyear.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tohour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tohour.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tominute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tominute.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tomonday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tomonday.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tomorrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tomorrow.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tosecond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tosecond.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofday.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartoffifteenminutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartoffifteenminutes.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartoffiveminutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartoffiveminutes.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofhour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofhour.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofisoyear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofisoyear.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofminute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofminute.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofmonth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofmonth.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofquarter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofquarter.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofsecond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofsecond.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartoftenminutes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartoftenminutes.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofweek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofweek.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/tostartofyear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/tostartofyear.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/totimestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/totimestamp.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/toyear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/toyear.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/toyyyymm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/toyyyymm.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/toyyyymmdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/toyyyymmdd.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/toyyyymmddhhmmss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/toyyyymmddhhmmss.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/30-datetime-functions/yesterday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/30-datetime-functions/yesterday.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/ascii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/ascii.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/bin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/bin.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/bit_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/bit_length.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/char.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/char.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/char_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/char_length.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/character_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/character_length.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/concat.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/concat_ws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/concat_ws.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/from_base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/from_base64.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/hex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/hex.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/insert.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/instr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/instr.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/lcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/lcase.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/left.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/left.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/length.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/like.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/locate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/locate.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/lower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/lower.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/lpad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/lpad.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/mid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/mid.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/not_like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/not_like.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/not_regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/not_regexp.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/not_rlike.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/not_rlike.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/oct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/oct.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/octet_length.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/octet_length.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/ord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/ord.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/position.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/quote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/quote.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/regexp.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/regexp_instr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/regexp_instr.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/regexp_like.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/regexp_like.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/regexp_replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/regexp_replace.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/regexp_substr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/regexp_substr.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/repeat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/repeat.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/replace.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/reverse.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/right.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/right.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/rlike.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/rlike.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/rpad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/rpad.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/soundex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/soundex.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/space.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/strcmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/strcmp.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/substr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/substr.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/substring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/substring.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/to_base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/to_base64.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/trim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/trim.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/ucase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/ucase.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/unhex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/unhex.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/40-string-functions/upper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/40-string-functions/upper.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/60-conversion-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Conversion Functions" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/60-conversion-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/60-conversion-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/61-ai-functions/01-ai-to-sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/61-ai-functions/01-ai-to-sql.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/61-ai-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "AI Functions" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/61-ai-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/61-ai-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/70-hash-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Hash Functions" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/70-hash-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/70-hash-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/80-uuid-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "UUID Functions" 3 | } 4 | -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/80-uuid-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/80-uuid-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/inet_aton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/inet_aton.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/inet_ntoa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/inet_ntoa.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/ipv4_num_to_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/ipv4_num_to_string.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/ipv4_string_to_num.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/ipv4_string_to_num.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/try_inet_aton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/try_inet_aton.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/try_inet_ntoa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/try_inet_ntoa.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/try_ipv4_num_to_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/try_ipv4_num_to_string.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/81-ip-address-functions/try_ipv4_string_to_num.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/81-ip-address-functions/try_ipv4_string_to_num.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/90-context-functions/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Context Functions" 3 | } 4 | -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/90-context-functions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/90-context-functions/index.md -------------------------------------------------------------------------------- /data/docs/doc/15-sql-functions/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/15-sql-functions/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/16-security/00-access-control/10-access-control-privileges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/16-security/00-access-control/10-access-control-privileges.rs -------------------------------------------------------------------------------- /data/docs/doc/16-security/00-access-control/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/16-security/00-access-control/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/16-security/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/16-security/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/21-use-cases/01-analyze-ontime-with-databend-on-ec2-and-s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/21-use-cases/01-analyze-ontime-with-databend-on-ec2-and-s3.md -------------------------------------------------------------------------------- /data/docs/doc/21-use-cases/02-analyze-nginx-logs-with-databend-and-vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/21-use-cases/02-analyze-nginx-logs-with-databend-and-vector.md -------------------------------------------------------------------------------- /data/docs/doc/21-use-cases/03-analyze-user-retention-with-databend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/21-use-cases/03-analyze-user-retention-with-databend.md -------------------------------------------------------------------------------- /data/docs/doc/21-use-cases/04-analyze-funnel-with-databend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/21-use-cases/04-analyze-funnel-with-databend.md -------------------------------------------------------------------------------- /data/docs/doc/21-use-cases/05-analyze-hits-dataset-with-databend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/21-use-cases/05-analyze-hits-dataset-with-databend.md -------------------------------------------------------------------------------- /data/docs/doc/21-use-cases/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/21-use-cases/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/70-performance/_category_.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Performance(TBD)" 3 | } -------------------------------------------------------------------------------- /data/docs/doc/80-releases/00-release-channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/80-releases/00-release-channels.md -------------------------------------------------------------------------------- /data/docs/doc/80-releases/96-v1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/80-releases/96-v1.0.0.md -------------------------------------------------------------------------------- /data/docs/doc/80-releases/97-v0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/80-releases/97-v0.9.0.md -------------------------------------------------------------------------------- /data/docs/doc/80-releases/98-v0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/80-releases/98-v0.8.0.md -------------------------------------------------------------------------------- /data/docs/doc/80-releases/99-v0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/80-releases/99-v0.7.0.md -------------------------------------------------------------------------------- /data/docs/doc/80-releases/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/80-releases/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/00-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/00-roadmap.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/00000000-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/00000000-example.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20210815-data-shuffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20210815-data-shuffle.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20210913-join-framework-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20210913-join-framework-design.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20210914-new-sql-planner-framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20210914-new-sql-planner-framework.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20211202-plan-expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20211202-plan-expression.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20211203-performance-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20211203-performance-test.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220117-new-datavalues-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220117-new-datavalues-system.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220304-semi-structured-data-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220304-semi-structured-data-types.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220425-new_sql_logic_test_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220425-new_sql_logic_test_framework.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220512-config-backward-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220512-config-backward-compatibility.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220530-user-friendly-releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220530-user-friendly-releases.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220704-presign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220704-presign.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220721-new-logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220721-new-logging.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220725-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220725-cache.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220728-metasrv-txn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220728-metasrv-txn.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220728-metasrv-watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220728-metasrv-watch.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220729-recluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220729-recluster.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220805-deprecate-clickhouse-tcp-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220805-deprecate-clickhouse-tcp-support.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220805-json-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220805-json-optimization.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220809-share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220809-share.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20220909-idempotent-copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20220909-idempotent-copy.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20221013-iceberg-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20221013-iceberg-catalog.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20221017-multiple-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20221017-multiple-catalog.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20221028-user-stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20221028-user-stage.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20230213-query-result-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20230213-query-result-cache.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20230307-stage-with-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20230307-stage-with-schema.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/20230308-transform-during-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/20230308-transform-during-load.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/01-rfcs/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/01-rfcs/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/02-building-from-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/02-building-from-source.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/03-good-pr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/03-good-pr.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/04-routine-maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/04-routine-maintenance.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/05-benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/05-benchmarking.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/06-how-to-benchmark-with-hyperfine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/06-how-to-benchmark-with-hyperfine.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/07-how-to-profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/07-how-to-profiling.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/08-how-to-write-scalar-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/08-how-to-write-scalar-functions.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/09-how-to-write-aggregate-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/09-how-to-write-aggregate-functions.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/10-how-to-write-a-system-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/10-how-to-write-a-system-table.md -------------------------------------------------------------------------------- /data/docs/doc/90-contributing/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/90-contributing/_category_.json -------------------------------------------------------------------------------- /data/docs/doc/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/data/docs/doc/sidebars.js -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /schema/qa_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/schema/qa_table.sql -------------------------------------------------------------------------------- /scripts/ci/ci-run-unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/scripts/ci/ci-run-unit-tests.sh -------------------------------------------------------------------------------- /scripts/setup/dev_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/scripts/setup/dev_setup.sh -------------------------------------------------------------------------------- /scripts/setup/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/scripts/setup/rust-toolchain.toml -------------------------------------------------------------------------------- /scripts/setup/rust-tools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/scripts/setup/rust-tools.txt -------------------------------------------------------------------------------- /web/.env: -------------------------------------------------------------------------------- 1 | VITE_APP_API_BASE_URL= -------------------------------------------------------------------------------- /web/.env.production: -------------------------------------------------------------------------------- 1 | NODE_ENV=production 2 | VITE_APP_API_BASE_URL=http://ask.databend.rs -------------------------------------------------------------------------------- /web/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/.eslintrc.cjs -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/fetch-repo-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/fetch-repo-info.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/public/vite.svg -------------------------------------------------------------------------------- /web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/App.tsx -------------------------------------------------------------------------------- /web/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/api/index.ts -------------------------------------------------------------------------------- /web/src/assets/constant/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/constant/index.ts -------------------------------------------------------------------------------- /web/src/assets/css/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/css/mixin.scss -------------------------------------------------------------------------------- /web/src/assets/json/preview-question.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/json/preview-question.json -------------------------------------------------------------------------------- /web/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/react.svg -------------------------------------------------------------------------------- /web/src/assets/svg/check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/svg/check.tsx -------------------------------------------------------------------------------- /web/src/assets/svg/databend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/svg/databend.tsx -------------------------------------------------------------------------------- /web/src/assets/svg/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/svg/github.tsx -------------------------------------------------------------------------------- /web/src/assets/svg/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/svg/link.tsx -------------------------------------------------------------------------------- /web/src/assets/svg/right.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/svg/right.tsx -------------------------------------------------------------------------------- /web/src/assets/svg/send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/svg/send.tsx -------------------------------------------------------------------------------- /web/src/assets/svg/time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/assets/svg/time.tsx -------------------------------------------------------------------------------- /web/src/components/Banner/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Banner/banner.tsx -------------------------------------------------------------------------------- /web/src/components/Banner/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Banner/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Card/index.tsx -------------------------------------------------------------------------------- /web/src/components/Card/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Card/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Entry/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Entry/index.tsx -------------------------------------------------------------------------------- /web/src/components/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Error/index.tsx -------------------------------------------------------------------------------- /web/src/components/Error/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Error/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /web/src/components/Footer/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Footer/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Input/count-length.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Input/count-length.tsx -------------------------------------------------------------------------------- /web/src/components/Input/examples.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Input/examples.tsx -------------------------------------------------------------------------------- /web/src/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Input/index.tsx -------------------------------------------------------------------------------- /web/src/components/Input/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Input/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Introduction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Introduction/index.tsx -------------------------------------------------------------------------------- /web/src/components/Introduction/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Introduction/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Loading/index.tsx -------------------------------------------------------------------------------- /web/src/components/Loading/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Loading/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Markdown/index.tsx -------------------------------------------------------------------------------- /web/src/components/Markdown/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Markdown/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/ProcuctName/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/ProcuctName/index.tsx -------------------------------------------------------------------------------- /web/src/components/ProcuctName/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/ProcuctName/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Result/index.tsx -------------------------------------------------------------------------------- /web/src/components/Result/result-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Result/result-card.tsx -------------------------------------------------------------------------------- /web/src/components/Result/result-history-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Result/result-history-card.tsx -------------------------------------------------------------------------------- /web/src/components/Result/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Result/styles.module.scss -------------------------------------------------------------------------------- /web/src/components/Result/success-tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/Result/success-tip.tsx -------------------------------------------------------------------------------- /web/src/components/WaitCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/WaitCard/index.tsx -------------------------------------------------------------------------------- /web/src/components/WaitCard/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/components/WaitCard/styles.module.scss -------------------------------------------------------------------------------- /web/src/hooks/useGetScrollInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/hooks/useGetScrollInfo.tsx -------------------------------------------------------------------------------- /web/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/index.scss -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/main.tsx -------------------------------------------------------------------------------- /web/src/state/hooks/useDatabendDispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/hooks/useDatabendDispatch.ts -------------------------------------------------------------------------------- /web/src/state/hooks/useGetResultsState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/hooks/useGetResultsState.ts -------------------------------------------------------------------------------- /web/src/state/redux/actions/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/redux/actions/result.ts -------------------------------------------------------------------------------- /web/src/state/redux/constant/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/redux/constant/result.ts -------------------------------------------------------------------------------- /web/src/state/redux/dispatch/result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/redux/dispatch/result.tsx -------------------------------------------------------------------------------- /web/src/state/redux/reducers/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/redux/reducers/result.ts -------------------------------------------------------------------------------- /web/src/state/redux/reducers/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/redux/reducers/rootReducer.ts -------------------------------------------------------------------------------- /web/src/state/redux/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/state/redux/store/index.ts -------------------------------------------------------------------------------- /web/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/types/index.ts -------------------------------------------------------------------------------- /web/src/utils/device-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/utils/device-type.ts -------------------------------------------------------------------------------- /web/src/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/src/utils/tools.ts -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/tsconfig.node.json -------------------------------------------------------------------------------- /web/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/vercel.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/vite.config.ts -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/databendlabs-x/askbend/HEAD/web/yarn.lock --------------------------------------------------------------------------------