├── .github ├── FUNDING.yml ├── actions │ ├── benchmark-runner-tests │ │ └── action.yaml │ ├── data-dump-loading-tests │ │ └── action.yaml │ ├── orm-tests │ │ └── action.yaml │ └── ses-email-action │ │ ├── action.yaml │ │ ├── dist │ │ └── index.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json ├── markdown-templates │ └── dep-bump.md ├── scripts │ ├── fuzzer │ │ ├── get-fuzzer-job-json.sh │ │ └── run-fuzzer.sh │ ├── merge-perf │ │ ├── data.py │ │ └── setup.sh │ ├── performance-benchmarking │ │ ├── get-dolt-dolt-job-json.sh │ │ ├── get-dolt-profile-job-json.sh │ │ ├── get-mysql-dolt-job-json.sh │ │ ├── run-benchmarks.sh │ │ └── validate-commentor.sh │ ├── sanitize_payload.sh │ └── sql-correctness │ │ ├── current_correctness.txt │ │ ├── get-dolt-correctness-job-json.sh │ │ └── run-correctness.sh └── workflows │ ├── README.md │ ├── bump-dependency.yaml │ ├── cd-bump-winget.yaml │ ├── cd-create-release-notes.yaml │ ├── cd-push-docker-image.yaml │ ├── cd-release-pgo.yaml │ ├── cd-release.yaml │ ├── ci-bats-macos.yaml │ ├── ci-bats-unix-remote.yaml │ ├── ci-bats-unix.yaml │ ├── ci-bats-windows.yaml │ ├── ci-benchmark-runner-tests.yaml │ ├── ci-binlog-tests.yaml │ ├── ci-check-correctness.yaml │ ├── ci-check-repo.yaml │ ├── ci-compatibility-tests.yaml │ ├── ci-data-dump-loading-tests.yaml │ ├── ci-go-race-tests.yaml │ ├── ci-go-tests.yaml │ ├── ci-lambdabats-unix.yaml │ ├── ci-mysql-client-tests.yaml │ ├── ci-orm-tests.yaml │ ├── ci-sql-server-integration-tests.yaml │ ├── doltgres-dependency.yml │ ├── email-report.yaml │ ├── import-benchmarks-pull-report.yaml │ ├── import-perf.yaml │ ├── k8s-benchmark-latency.yaml │ ├── k8s-dolt-profile.yaml │ ├── k8s-fuzzer.yaml │ ├── k8s-sql-correctness.yaml │ ├── label-customer-issues.yaml │ ├── merge-perf-pr.yaml │ ├── merge-perf.yaml │ ├── nightly-performance-benchmarks-email-report.yaml │ ├── performance-benchmarks-email-report.yaml │ ├── performance-benchmarks-pull-report.yaml │ ├── pull-report.yaml │ ├── sql-correctness.yaml │ ├── sql-regressions.yaml │ ├── sysbench-benchmarks-pull-report.yaml │ └── sysbench-perf.yaml ├── .gitignore ├── .gitmodules ├── CODEOWNERS ├── LICENSE ├── README.md ├── SECURITY.md ├── docker ├── Dockerfile ├── README.md ├── docker-entrypoint.sh ├── serverDockerfile └── serverREADME.md ├── dolt.plugin.zsh ├── go ├── .gitignore ├── Godeps │ ├── LICENSES │ ├── update.sh │ └── verify.sh ├── cmd │ └── dolt │ │ ├── cli │ │ ├── arg_helpers.go │ │ ├── arg_parse_helpers_test.go │ │ ├── arg_parser_helpers.go │ │ ├── cli_context.go │ │ ├── command.go │ │ ├── command_test.go │ │ ├── credentials.go │ │ ├── doc.go │ │ ├── documentation_helper.go │ │ ├── flags.go │ │ ├── help.go │ │ ├── help_test.go │ │ ├── messages.go │ │ ├── query_helpers.go │ │ ├── stdio.go │ │ └── stdio_test.go │ │ ├── commands │ │ ├── add.go │ │ ├── admin │ │ │ ├── admin.go │ │ │ ├── archive_inspect.go │ │ │ ├── conjoin.go │ │ │ ├── createchunk │ │ │ │ ├── createchunk.go │ │ │ │ └── createcommit.go │ │ │ ├── journal_inspect.go │ │ │ ├── newgen_to_oldgen.go │ │ │ ├── setref.go │ │ │ ├── showroot.go │ │ │ ├── storage.go │ │ │ └── zstd.go │ │ ├── archive.go │ │ ├── assist.go │ │ ├── backup.go │ │ ├── blame.go │ │ ├── branch.go │ │ ├── checkout.go │ │ ├── cherry-pick.go │ │ ├── ci │ │ │ ├── ci.go │ │ │ ├── destroy.go │ │ │ ├── dolt_test_step_run.go │ │ │ ├── dolt_test_step_view.go │ │ │ ├── export.go │ │ │ ├── import.go │ │ │ ├── init.go │ │ │ ├── ls.go │ │ │ ├── remove.go │ │ │ ├── run.go │ │ │ └── view.go │ │ ├── clean.go │ │ ├── clone.go │ │ ├── clone_test.go │ │ ├── cnfcmds │ │ │ ├── auto_resolve.go │ │ │ ├── cat.go │ │ │ ├── conflicts.go │ │ │ ├── conflictsplitter.go │ │ │ └── resolve.go │ │ ├── commands_test.go │ │ ├── commit.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── credcmds │ │ │ ├── check.go │ │ │ ├── creds.go │ │ │ ├── import.go │ │ │ ├── ls.go │ │ │ ├── new.go │ │ │ ├── rm.go │ │ │ └── use.go │ │ ├── cvcmds │ │ │ ├── constraint_violations.go │ │ │ └── verify_constraints.go │ │ ├── debug.go │ │ ├── diff.go │ │ ├── diff_filter_test.go │ │ ├── diff_output.go │ │ ├── doc.go │ │ ├── docscmds │ │ │ ├── diff.go │ │ │ ├── docs.go │ │ │ ├── read.go │ │ │ └── write.go │ │ ├── dump.go │ │ ├── dump_docs.go │ │ ├── engine │ │ │ ├── jwtplugin.go │ │ │ ├── jwtplugin_test.go │ │ │ ├── sql_print.go │ │ │ ├── sql_print_test.go │ │ │ ├── sqlengine.go │ │ │ ├── testdata │ │ │ │ └── test_jwks.json │ │ │ └── utils.go │ │ ├── fetch.go │ │ ├── filter-branch.go │ │ ├── fsck.go │ │ ├── gc.go │ │ ├── gen_zsh_comp.go │ │ ├── indexcmds │ │ │ ├── cat.go │ │ │ ├── index.go │ │ │ ├── ls.go │ │ │ └── rebuild.go │ │ ├── init.go │ │ ├── init_test.go │ │ ├── inspect.go │ │ ├── log.go │ │ ├── log_graph.go │ │ ├── log_graph_test.go │ │ ├── log_test.go │ │ ├── login.go │ │ ├── ls.go │ │ ├── merge.go │ │ ├── merge_base.go │ │ ├── migrate.go │ │ ├── profile.go │ │ ├── pull.go │ │ ├── push.go │ │ ├── query_diff.go │ │ ├── read_tables.go │ │ ├── rebase.go │ │ ├── reflog.go │ │ ├── remote.go │ │ ├── remote_test.go │ │ ├── reset.go │ │ ├── revert.go │ │ ├── rm.go │ │ ├── roots.go │ │ ├── schcmds │ │ │ ├── copy-tags.go │ │ │ ├── export.go │ │ │ ├── import.go │ │ │ ├── schema.go │ │ │ ├── schema_cmd_test.go │ │ │ ├── show.go │ │ │ ├── tags.go │ │ │ └── update-tag.go │ │ ├── send_metrics.go │ │ ├── show.go │ │ ├── signed_commits_test.go │ │ ├── sql.go │ │ ├── sql_slash.go │ │ ├── sql_statement_scanner.go │ │ ├── sql_statement_scanner_test.go │ │ ├── sql_test.go │ │ ├── sqlserver │ │ │ ├── command_line_config.go │ │ │ ├── creds.go │ │ │ ├── logformat.go │ │ │ ├── mcp.go │ │ │ ├── mcp_validate.go │ │ │ ├── metrics_auth.go │ │ │ ├── metrics_listener.go │ │ │ ├── queryist_utils.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ └── sqlserver.go │ │ ├── stash.go │ │ ├── status.go │ │ ├── tag.go │ │ ├── tblcmds │ │ │ ├── cp.go │ │ │ ├── doc.go │ │ │ ├── export.go │ │ │ ├── import.go │ │ │ ├── import_test.go │ │ │ ├── mv.go │ │ │ ├── rm.go │ │ │ └── table.go │ │ ├── testdata │ │ │ └── signed_commits │ │ │ │ ├── db │ │ │ │ └── .dolt │ │ │ │ │ ├── config.json │ │ │ │ │ ├── noms │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── journal.idx │ │ │ │ │ ├── manifest │ │ │ │ │ └── vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv │ │ │ │ │ ├── repo_state.json │ │ │ │ │ └── stats │ │ │ │ │ └── .dolt │ │ │ │ │ ├── config.json │ │ │ │ │ ├── noms │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── journal.idx │ │ │ │ │ ├── manifest │ │ │ │ │ └── vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv │ │ │ │ │ └── repo_state.json │ │ │ │ └── private.pgp │ │ ├── utils.go │ │ └── version.go │ │ ├── doc.go │ │ ├── dolt.go │ │ ├── doltcmd │ │ └── doltcmd.go │ │ ├── doltversion │ │ └── version.go │ │ ├── errhand │ │ ├── derr.go │ │ ├── derr_test.go │ │ ├── doc.go │ │ ├── panic_utils.go │ │ └── verr.go │ │ ├── fileno_check.go │ │ ├── fileno_check_darwin.go │ │ ├── fileno_check_linux.go │ │ └── system_checks.go ├── gen │ ├── fb │ │ └── serial │ │ │ ├── addressmap.go │ │ │ ├── blob.go │ │ │ ├── branchcontrol.go │ │ │ ├── collation.go │ │ │ ├── commit.go │ │ │ ├── commitclosure.go │ │ │ ├── encoding.go │ │ │ ├── fileidentifiers.go │ │ │ ├── foreign_key.go │ │ │ ├── mergeartifacts.go │ │ │ ├── prolly.go │ │ │ ├── rootvalue.go │ │ │ ├── schema.go │ │ │ ├── stash.go │ │ │ ├── stashlist.go │ │ │ ├── stat.go │ │ │ ├── storeroot.go │ │ │ ├── table.go │ │ │ ├── tag.go │ │ │ ├── tuple.go │ │ │ ├── vectorindexnode.go │ │ │ └── workingset.go │ └── proto │ │ └── dolt │ │ └── services │ │ ├── remotesapi │ │ └── v1alpha1 │ │ │ ├── chunkstore.pb.go │ │ │ ├── chunkstore_grpc.pb.go │ │ │ ├── credentials.pb.go │ │ │ └── credentials_grpc.pb.go │ │ └── replicationapi │ │ └── v1alpha1 │ │ ├── replication.pb.go │ │ └── replication_grpc.pb.go ├── go.mod ├── go.sum ├── libraries │ ├── doc.go │ ├── doltcore │ │ ├── branch_control │ │ │ ├── access.go │ │ │ ├── binlog.go │ │ │ ├── binlog_test.go │ │ │ ├── branch_control.go │ │ │ ├── expr_parser.go │ │ │ ├── expr_parser_node.go │ │ │ ├── expr_parser_node.md │ │ │ ├── expr_parser_test.go │ │ │ └── namespace.go │ │ ├── cherry_pick │ │ │ └── cherry_pick.go │ │ ├── conflict │ │ │ └── conflict.go │ │ ├── creds │ │ │ ├── creds.go │ │ │ ├── jwk.go │ │ │ └── jwk_test.go │ │ ├── dbfactory │ │ │ ├── aws.go │ │ │ ├── aws_test.go │ │ │ ├── dirtodbname.go │ │ │ ├── factory.go │ │ │ ├── factory_test.go │ │ │ ├── file.go │ │ │ ├── grpc.go │ │ │ ├── gs.go │ │ │ ├── mem.go │ │ │ ├── oci.go │ │ │ ├── oss.go │ │ │ ├── oss_test.go │ │ │ └── testdata │ │ │ │ ├── alt_creds_file │ │ │ │ ├── basic_config_file │ │ │ │ ├── basic_creds_file │ │ │ │ └── osscred │ │ │ │ ├── dolt_oss_credentials │ │ │ │ ├── empty_oss_cred │ │ │ │ └── single_oss_cred │ │ ├── dconfig │ │ │ ├── date_parsing.go │ │ │ └── envvars.go │ │ ├── diff │ │ │ ├── async_differ.go │ │ │ ├── async_differ_test.go │ │ │ ├── column_identity_test.go │ │ │ ├── database_schema_deltas.go │ │ │ ├── diff.go │ │ │ ├── diff_source.go │ │ │ ├── diff_stat.go │ │ │ ├── diffsplitter.go │ │ │ ├── diffsplitter_test.go │ │ │ ├── schema_diff.go │ │ │ ├── schema_diff_test.go │ │ │ ├── table_deltas.go │ │ │ └── table_deltas_test.go │ │ ├── doltdb │ │ │ ├── AGENT.md │ │ │ ├── ancestor_spec.go │ │ │ ├── ancestor_spec_test.go │ │ │ ├── branch_activity.go │ │ │ ├── commit.go │ │ │ ├── commit_itr.go │ │ │ ├── commit_spec.go │ │ │ ├── commit_spec_test.go │ │ │ ├── doltdb.go │ │ │ ├── doltdb_test.go │ │ │ ├── durable │ │ │ │ ├── artifact_index.go │ │ │ │ ├── conflict_index.go │ │ │ │ ├── index.go │ │ │ │ ├── proximity_index.go │ │ │ │ └── table.go │ │ │ ├── envvars.go │ │ │ ├── errors.go │ │ │ ├── feature_version.md │ │ │ ├── feature_version_test.go │ │ │ ├── foreign_key_coll.go │ │ │ ├── foreign_key_serialization.go │ │ │ ├── foreign_key_test.go │ │ │ ├── gc_test.go │ │ │ ├── gcctx │ │ │ │ ├── context.go │ │ │ │ ├── gc_safepoint_controller.go │ │ │ │ └── gc_safepoint_controller_test.go │ │ │ ├── hooksdatabase.go │ │ │ ├── ignore.go │ │ │ ├── nonlocal_tables.go │ │ │ ├── root_object.go │ │ │ ├── root_val.go │ │ │ ├── root_val_storage.go │ │ │ ├── stash.go │ │ │ ├── system_table.go │ │ │ ├── table.go │ │ │ ├── table_name_patterns.go │ │ │ ├── table_test.go │ │ │ ├── tablename_set.go │ │ │ ├── tag.go │ │ │ └── workingset.go │ │ ├── dtestutils │ │ │ ├── data.go │ │ │ ├── doc.go │ │ │ ├── environment.go │ │ │ ├── schema.go │ │ │ ├── sql_server_driver │ │ │ │ ├── cmd.go │ │ │ │ ├── cmd_unix.go │ │ │ │ ├── cmd_windows.go │ │ │ │ └── server.go │ │ │ └── testcommands │ │ │ │ └── multienv.go │ │ ├── env │ │ │ ├── actions │ │ │ │ ├── branch.go │ │ │ │ ├── checkout.go │ │ │ │ ├── clone.go │ │ │ │ ├── commit.go │ │ │ │ ├── commitwalk │ │ │ │ │ ├── commitwalk.go │ │ │ │ │ └── commitwalk_test.go │ │ │ │ ├── creds.go │ │ │ │ ├── dolt_ci │ │ │ │ │ ├── column_value.go │ │ │ │ │ ├── schema.go │ │ │ │ │ ├── utils.go │ │ │ │ │ ├── workflow.go │ │ │ │ │ ├── workflow_config.go │ │ │ │ │ ├── workflow_config_test.go │ │ │ │ │ ├── workflow_dolt_test_step.go │ │ │ │ │ ├── workflow_dolt_test_step_groups.go │ │ │ │ │ ├── workflow_dolt_test_step_tests.go │ │ │ │ │ ├── workflow_event.go │ │ │ │ │ ├── workflow_event_trigger.go │ │ │ │ │ ├── workflow_event_trigger_branch.go │ │ │ │ │ ├── workflow_job.go │ │ │ │ │ ├── workflow_manager.go │ │ │ │ │ ├── workflow_saved_query_step.go │ │ │ │ │ ├── workflow_saved_query_step_expected_row_column_result.go │ │ │ │ │ └── workflow_step.go │ │ │ │ ├── errors.go │ │ │ │ ├── infer_schema.go │ │ │ │ ├── infer_schema_test.go │ │ │ │ ├── prog_handlers.go │ │ │ │ ├── remotes.go │ │ │ │ ├── reset.go │ │ │ │ ├── staged.go │ │ │ │ ├── table.go │ │ │ │ ├── tag.go │ │ │ │ ├── tag_test.go │ │ │ │ ├── test_table_helpers.go │ │ │ │ └── workspace.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── environment.go │ │ │ ├── environment_test.go │ │ │ ├── grpc_dial_provider.go │ │ │ ├── memory.go │ │ │ ├── multi_repo_env.go │ │ │ ├── multi_repo_env_test.go │ │ │ ├── paths.go │ │ │ ├── paths_test.go │ │ │ ├── remotes.go │ │ │ └── repo_state.go │ │ ├── grpcendpoint │ │ │ └── config.go │ │ ├── merge │ │ │ ├── action.go │ │ │ ├── conflict_reader.go │ │ │ ├── data_merge_test.go │ │ │ ├── fulltext_rebuild.go │ │ │ ├── fulltext_table.go │ │ │ ├── integration_test.go │ │ │ ├── keyless_integration_test.go │ │ │ ├── merge.go │ │ │ ├── merge_base.go │ │ │ ├── merge_noms_rows.go │ │ │ ├── merge_prolly_indexes.go │ │ │ ├── merge_prolly_rows.go │ │ │ ├── merge_rows.go │ │ │ ├── merge_schema.go │ │ │ ├── merge_stats.go │ │ │ ├── merge_test.go │ │ │ ├── mutable_secondary_index.go │ │ │ ├── revert.go │ │ │ ├── row_merge_test.go │ │ │ ├── schema_integration_test.go │ │ │ ├── schema_merge_test.go │ │ │ ├── stash.go │ │ │ ├── three_way_json_differ.go │ │ │ ├── violations_fk.go │ │ │ ├── violations_fk_prolly.go │ │ │ ├── violations_prolly.go │ │ │ └── violations_unique_prolly.go │ │ ├── migrate │ │ │ ├── environment.go │ │ │ ├── integration_test.go │ │ │ ├── progress.go │ │ │ ├── transform.go │ │ │ ├── traverse.go │ │ │ ├── tuples.go │ │ │ └── validation.go │ │ ├── mvdata │ │ │ ├── channel_row_source.go │ │ │ ├── csv_helper.go │ │ │ ├── data_loc.go │ │ │ ├── data_loc_test.go │ │ │ ├── data_mover.go │ │ │ ├── engine_table_reader.go │ │ │ ├── engine_table_writer.go │ │ │ ├── file_data_loc.go │ │ │ ├── pipeline.go │ │ │ └── stream_data_loc.go │ │ ├── rebase │ │ │ ├── filter_branch.go │ │ │ ├── filter_branch_test.go │ │ │ └── rebase.go │ │ ├── ref │ │ │ ├── branch_ref.go │ │ │ ├── branchname.go │ │ │ ├── branchname_test.go │ │ │ ├── internal_ref.go │ │ │ ├── ref.go │ │ │ ├── ref_spec.go │ │ │ ├── ref_spec_pattern.go │ │ │ ├── ref_spec_pattern_test.go │ │ │ ├── ref_spec_test.go │ │ │ ├── ref_test.go │ │ │ ├── ref_wrap.go │ │ │ ├── remote_ref.go │ │ │ ├── stash_ref.go │ │ │ ├── stats_ref.go │ │ │ ├── tag_ref.go │ │ │ ├── tuple_ref.go │ │ │ ├── workingset_ref.go │ │ │ └── workspace_ref.go │ │ ├── remotesrv │ │ │ ├── dbcache.go │ │ │ ├── grpc.go │ │ │ ├── grpc_test.go │ │ │ ├── http.go │ │ │ ├── interceptors.go │ │ │ ├── sealer.go │ │ │ ├── sealer_test.go │ │ │ ├── server.go │ │ │ ├── validate.go │ │ │ └── validate_test.go │ │ ├── remotestorage │ │ │ ├── capacity_monitor.go │ │ │ ├── chunk_cache.go │ │ │ ├── chunk_fetcher.go │ │ │ ├── chunk_fetcher_test.go │ │ │ ├── chunk_store.go │ │ │ ├── chunk_store_test.go │ │ │ ├── concurrency.go │ │ │ ├── concurrency_test.go │ │ │ ├── error.go │ │ │ ├── events_interceptor.go │ │ │ ├── internal │ │ │ │ ├── pool │ │ │ │ │ ├── pool.go │ │ │ │ │ └── pool_test.go │ │ │ │ ├── ranges │ │ │ │ │ ├── ranges.go │ │ │ │ │ └── ranges_test.go │ │ │ │ └── reliable │ │ │ │ │ ├── chan.go │ │ │ │ │ ├── chan_test.go │ │ │ │ │ ├── grpc.go │ │ │ │ │ ├── grpc_state_machine_struct.go │ │ │ │ │ ├── grpc_test.go │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── timeout_controller.go │ │ │ │ │ └── timeout_controller_test.go │ │ │ ├── map_chunk_cache.go │ │ │ ├── map_chunk_cache_test.go │ │ │ ├── noop_chunk_cache.go │ │ │ ├── retry.go │ │ │ ├── retrying_interceptor.go │ │ │ ├── stats.go │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ ├── writebuffer.go │ │ │ └── writebuffer_test.go │ │ ├── row │ │ │ ├── fmt.go │ │ │ ├── fmt_test.go │ │ │ ├── keyless_row.go │ │ │ ├── noms_row.go │ │ │ ├── noms_row_test.go │ │ │ ├── row.go │ │ │ ├── row_test.go │ │ │ ├── tagged_values.go │ │ │ └── tagged_values_test.go │ │ ├── rowconv │ │ │ ├── field_mapping.go │ │ │ ├── field_mapping_test.go │ │ │ ├── joiner.go │ │ │ ├── joiner_test.go │ │ │ ├── row_converter.go │ │ │ └── row_converter_test.go │ │ ├── schema │ │ │ ├── check_coll.go │ │ │ ├── check_coll_test.go │ │ │ ├── col_coll.go │ │ │ ├── col_coll_test.go │ │ │ ├── collation.go │ │ │ ├── collation_comparator.go │ │ │ ├── collation_comparator_test.go │ │ │ ├── column.go │ │ │ ├── constraint.go │ │ │ ├── constraint_test.go │ │ │ ├── data_length.go │ │ │ ├── database_schema.go │ │ │ ├── encoding │ │ │ │ ├── integration_test.go │ │ │ │ ├── schema_marshaling.go │ │ │ │ ├── schema_marshaling_test.go │ │ │ │ └── serialization.go │ │ │ ├── index.go │ │ │ ├── index_coll.go │ │ │ ├── index_test.go │ │ │ ├── integration_test.go │ │ │ ├── reserved_tags.go │ │ │ ├── schema.go │ │ │ ├── schema_impl.go │ │ │ ├── schema_test.go │ │ │ ├── serial_encoding.go │ │ │ ├── statistic.go │ │ │ ├── tag.go │ │ │ ├── typecompatibility │ │ │ │ ├── type_compatibility.go │ │ │ │ └── type_compatibility_test.go │ │ │ └── typeinfo │ │ │ │ ├── bit.go │ │ │ │ ├── bit_test.go │ │ │ │ ├── blobstring.go │ │ │ │ ├── blobstring_test.go │ │ │ │ ├── bool.go │ │ │ │ ├── bool_test.go │ │ │ │ ├── common_test.go │ │ │ │ ├── datetime.go │ │ │ │ ├── datetime_test.go │ │ │ │ ├── decimal.go │ │ │ │ ├── decimal_test.go │ │ │ │ ├── enum.go │ │ │ │ ├── enum_test.go │ │ │ │ ├── extended.go │ │ │ │ ├── float.go │ │ │ │ ├── float_test.go │ │ │ │ ├── geometry.go │ │ │ │ ├── geometry_collection.go │ │ │ │ ├── inlineblob.go │ │ │ │ ├── inlineblob_test.go │ │ │ │ ├── int.go │ │ │ │ ├── int_test.go │ │ │ │ ├── json.go │ │ │ │ ├── linestring.go │ │ │ │ ├── multilinestring.go │ │ │ │ ├── multipoint.go │ │ │ │ ├── multipolygon.go │ │ │ │ ├── point.go │ │ │ │ ├── polygon.go │ │ │ │ ├── set.go │ │ │ │ ├── set_test.go │ │ │ │ ├── time.go │ │ │ │ ├── time_test.go │ │ │ │ ├── tuple.go │ │ │ │ ├── typeconverter.go │ │ │ │ ├── typeinfo.go │ │ │ │ ├── typeinfo_test.go │ │ │ │ ├── uint.go │ │ │ │ ├── uint_test.go │ │ │ │ ├── unknown.go │ │ │ │ ├── uuid.go │ │ │ │ ├── uuid_test.go │ │ │ │ ├── varbinary.go │ │ │ │ ├── varstring.go │ │ │ │ ├── varstring_test.go │ │ │ │ ├── vector.go │ │ │ │ ├── year.go │ │ │ │ └── year_test.go │ │ ├── servercfg │ │ │ ├── minver_test.go │ │ │ ├── serverconfig.go │ │ │ ├── testdata │ │ │ │ ├── chain_cert.pem │ │ │ │ ├── chain_key.pem │ │ │ │ ├── minver_validation.txt │ │ │ │ ├── selfsigned_cert.pem │ │ │ │ └── selfsigned_key.pem │ │ │ ├── yaml_config.go │ │ │ └── yaml_config_test.go │ │ ├── sqle │ │ │ ├── adapters │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── alterschema.go │ │ │ ├── alterschema_test.go │ │ │ ├── auto_gc.go │ │ │ ├── auto_gc_test.go │ │ │ ├── binlogreplication │ │ │ │ ├── binlog_consumer.go │ │ │ │ ├── binlog_file_utils.go │ │ │ │ ├── binlog_json_serialization.go │ │ │ │ ├── binlog_json_serialization_test.go │ │ │ │ ├── binlog_metadata_persistence.go │ │ │ │ ├── binlog_position_store.go │ │ │ │ ├── binlog_primary_controller.go │ │ │ │ ├── binlog_primary_hooks.go │ │ │ │ ├── binlog_primary_log_manager.go │ │ │ │ ├── binlog_primary_streamer.go │ │ │ │ ├── binlog_primary_test.go │ │ │ │ ├── binlog_producer.go │ │ │ │ ├── binlog_queries_test.go │ │ │ │ ├── binlog_replica_applier.go │ │ │ │ ├── binlog_replica_controller.go │ │ │ │ ├── binlog_replica_event_producer.go │ │ │ │ ├── binlog_replica_filtering.go │ │ │ │ ├── binlog_replication_alltypes_test.go │ │ │ │ ├── binlog_replication_filters_test.go │ │ │ │ ├── binlog_replication_multidb_test.go │ │ │ │ ├── binlog_replication_reconnect_test.go │ │ │ │ ├── binlog_replication_restart_test.go │ │ │ │ ├── binlog_replication_test.go │ │ │ │ ├── binlog_row_serialization.go │ │ │ │ ├── binlog_type_serialization.go │ │ │ │ ├── binlog_type_serialization_test.go │ │ │ │ ├── cmd_attributes_unix_test.go │ │ │ │ ├── cmd_attributes_windows_test.go │ │ │ │ ├── system_variable_utils.go │ │ │ │ └── testdata │ │ │ │ │ ├── binlog_delete.txt │ │ │ │ │ ├── binlog_format_desc.txt │ │ │ │ │ ├── binlog_insert.txt │ │ │ │ │ ├── binlog_maker.bats │ │ │ │ │ ├── binlog_no_format_desc.txt │ │ │ │ │ ├── binlog_transaction_multi_ops.txt │ │ │ │ │ └── binlog_update.txt │ │ │ ├── cluster │ │ │ │ ├── assume_role.go │ │ │ │ ├── branch_control_replica.go │ │ │ │ ├── commithook.go │ │ │ │ ├── commithook_test.go │ │ │ │ ├── controller.go │ │ │ │ ├── dialprovider.go │ │ │ │ ├── initdbhook.go │ │ │ │ ├── interceptors.go │ │ │ │ ├── interceptors_test.go │ │ │ │ ├── jwks.go │ │ │ │ ├── mysqldb_persister.go │ │ │ │ ├── progress_notifier.go │ │ │ │ ├── progress_notifier_test.go │ │ │ │ ├── remotesrv.go │ │ │ │ └── replication_service.go │ │ │ ├── clusterdb │ │ │ │ ├── cluster_status_table.go │ │ │ │ └── database.go │ │ │ ├── commit_hooks.go │ │ │ ├── commit_hooks_test.go │ │ │ ├── common_test.go │ │ │ ├── constants.go │ │ │ ├── database.go │ │ │ ├── database_provider.go │ │ │ ├── database_provider_test.go │ │ │ ├── database_test.go │ │ │ ├── dfunctions │ │ │ │ ├── active_branch.go │ │ │ │ ├── has_ancestor.go │ │ │ │ ├── hashof.go │ │ │ │ ├── hashof_database.go │ │ │ │ ├── hashof_table.go │ │ │ │ ├── init.go │ │ │ │ ├── join_cost.go │ │ │ │ ├── merge_base.go │ │ │ │ ├── storage_format.go │ │ │ │ └── version.go │ │ │ ├── dolt_procedures_diff_table.go │ │ │ ├── dolt_procedures_history_table.go │ │ │ ├── dolt_schemas_diff_table.go │ │ │ ├── dolt_schemas_history_table.go │ │ │ ├── dprocedures │ │ │ │ ├── dolt_add.go │ │ │ │ ├── dolt_backup.go │ │ │ │ ├── dolt_branch.go │ │ │ │ ├── dolt_checkout.go │ │ │ │ ├── dolt_checkout_helpers.go │ │ │ │ ├── dolt_cherry_pick.go │ │ │ │ ├── dolt_clean.go │ │ │ │ ├── dolt_clone.go │ │ │ │ ├── dolt_commit.go │ │ │ │ ├── dolt_conflicts_resolve.go │ │ │ │ ├── dolt_count_commits.go │ │ │ │ ├── dolt_fetch.go │ │ │ │ ├── dolt_gc.go │ │ │ │ ├── dolt_merge.go │ │ │ │ ├── dolt_pull.go │ │ │ │ ├── dolt_purge_dropped_databases.go │ │ │ │ ├── dolt_push.go │ │ │ │ ├── dolt_rebase.go │ │ │ │ ├── dolt_remote.go │ │ │ │ ├── dolt_reset.go │ │ │ │ ├── dolt_revert.go │ │ │ │ ├── dolt_rm.go │ │ │ │ ├── dolt_stash.go │ │ │ │ ├── dolt_tag.go │ │ │ │ ├── dolt_test_valctx.go │ │ │ │ ├── dolt_thread_dump.go │ │ │ │ ├── dolt_undrop.go │ │ │ │ ├── dolt_update_column_tag.go │ │ │ │ ├── dolt_verify_constraints.go │ │ │ │ ├── init.go │ │ │ │ └── stats_funcs.go │ │ │ ├── dropped_databases.go │ │ │ ├── dsess │ │ │ │ ├── auto_increment_tracker_test.go │ │ │ │ ├── autoincrement_tracker.go │ │ │ │ ├── branch_control.go │ │ │ │ ├── database_session_state.go │ │ │ │ ├── doc.go │ │ │ │ ├── dolt_session_test.go │ │ │ │ ├── globalstate.go │ │ │ │ ├── mutexmap │ │ │ │ │ └── mutexmap.go │ │ │ │ ├── overrides.go │ │ │ │ ├── session.go │ │ │ │ ├── session_cache.go │ │ │ │ ├── session_db_provider.go │ │ │ │ ├── session_state_adapter.go │ │ │ │ ├── table_writer.go │ │ │ │ ├── transactions.go │ │ │ │ └── variables.go │ │ │ ├── dtablefunctions │ │ │ │ ├── dolt_branch_status_table_function.go │ │ │ │ ├── dolt_diff.go │ │ │ │ ├── dolt_diff_stat.go │ │ │ │ ├── dolt_diff_summary.go │ │ │ │ ├── dolt_json_diff.go │ │ │ │ ├── dolt_json_diff_test.go │ │ │ │ ├── dolt_log.go │ │ │ │ ├── dolt_log_test.go │ │ │ │ ├── dolt_patch.go │ │ │ │ ├── dolt_preview_merge_conflicts.go │ │ │ │ ├── dolt_preview_merge_conflicts_summary.go │ │ │ │ ├── dolt_query_diff.go │ │ │ │ ├── dolt_reflog.go │ │ │ │ ├── dolt_schema_diff.go │ │ │ │ ├── dolt_test_run.go │ │ │ │ └── init.go │ │ │ ├── dtables │ │ │ │ ├── backups_table.go │ │ │ │ ├── binlog_table.go │ │ │ │ ├── blame_view.go │ │ │ │ ├── branch_activity_table.go │ │ │ │ ├── branch_control_table.go │ │ │ │ ├── branch_namespace_control.go │ │ │ │ ├── branches_table.go │ │ │ │ ├── column_diff_table.go │ │ │ │ ├── commit_ancestors_table.go │ │ │ │ ├── commit_diff_table.go │ │ │ │ ├── commits_table.go │ │ │ │ ├── conflicts_tables.go │ │ │ │ ├── conflicts_tables_prolly.go │ │ │ │ ├── conflicts_tables_root_objects.go │ │ │ │ ├── constraint_violations.go │ │ │ │ ├── constraint_violations_prolly.go │ │ │ │ ├── diff_iter.go │ │ │ │ ├── diff_table.go │ │ │ │ ├── docs_table.go │ │ │ │ ├── dtable_fk_editor.go │ │ │ │ ├── expression.go │ │ │ │ ├── help_table.go │ │ │ │ ├── ignore_table.go │ │ │ │ ├── log_table.go │ │ │ │ ├── merge_status_table.go │ │ │ │ ├── nonlocal_table.go │ │ │ │ ├── prolly_row_conv.go │ │ │ │ ├── query_catalog_table.go │ │ │ │ ├── remotes_table.go │ │ │ │ ├── schema_conflicts_table.go │ │ │ │ ├── stashes_table.go │ │ │ │ ├── statistics_table.go │ │ │ │ ├── status_table.go │ │ │ │ ├── table_of_tables_in_conflict.go │ │ │ │ ├── table_of_tables_with_violations.go │ │ │ │ ├── tags_table.go │ │ │ │ ├── tests_table.go │ │ │ │ ├── unscoped_diff_table.go │ │ │ │ ├── user_space_system_table.go │ │ │ │ ├── versioned_table.go │ │ │ │ └── workspace_table.go │ │ │ ├── enginetest │ │ │ │ ├── blob_queries.go │ │ │ │ ├── branch_activity_queries.go │ │ │ │ ├── branch_control_test.go │ │ │ │ ├── ddl_queries.go │ │ │ │ ├── dolt_branch_queries.go │ │ │ │ ├── dolt_engine_test.go │ │ │ │ ├── dolt_engine_tests.go │ │ │ │ ├── dolt_harness.go │ │ │ │ ├── dolt_procedure_queries.go │ │ │ │ ├── dolt_queries.go │ │ │ │ ├── dolt_queries_create_database.go │ │ │ │ ├── dolt_queries_diff.go │ │ │ │ ├── dolt_queries_help.go │ │ │ │ ├── dolt_queries_merge.go │ │ │ │ ├── dolt_queries_nonlocal.go │ │ │ │ ├── dolt_queries_query_catalog.go │ │ │ │ ├── dolt_queries_rebase.go │ │ │ │ ├── dolt_queries_revert.go │ │ │ │ ├── dolt_queries_rm.go │ │ │ │ ├── dolt_queries_schema_merge.go │ │ │ │ ├── dolt_queries_schema_override.go │ │ │ │ ├── dolt_queries_stash.go │ │ │ │ ├── dolt_queries_test_table.go │ │ │ │ ├── dolt_queries_verify_constraints.go │ │ │ │ ├── dolt_queries_workspace.go │ │ │ │ ├── dolt_query_plans.go │ │ │ │ ├── dolt_server_test.go │ │ │ │ ├── dolt_server_tests.go │ │ │ │ ├── dolt_system_table_queries.go │ │ │ │ ├── dolt_transaction_commit_test.go │ │ │ │ ├── dolt_transaction_queries.go │ │ │ │ ├── prepared_queries.go │ │ │ │ ├── privilege_test.go │ │ │ │ ├── stats_queries.go │ │ │ │ ├── sysbench_test.go │ │ │ │ ├── system_table_function_index_tests.go │ │ │ │ ├── testdata │ │ │ │ │ ├── fullSize │ │ │ │ │ ├── halfSize │ │ │ │ │ ├── test1.png │ │ │ │ │ └── tinyFile │ │ │ │ ├── testgen_test.go │ │ │ │ ├── validation.go │ │ │ │ └── versioned_queries.go │ │ │ ├── expranalysis │ │ │ │ └── expranalysis.go │ │ │ ├── expreval │ │ │ │ ├── compare_ops.go │ │ │ │ ├── compare_ops_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── expression_evaluator.go │ │ │ │ ├── expression_evaluator_test.go │ │ │ │ ├── literal_helpers.go │ │ │ │ └── literal_helpers_test.go │ │ │ ├── fk │ │ │ │ └── fk_references.go │ │ │ ├── globalstate │ │ │ │ ├── auto_increment_tracker.go │ │ │ │ └── global_state.go │ │ │ ├── history_table.go │ │ │ ├── index │ │ │ │ ├── async_indexed_lookups.go │ │ │ │ ├── dolt_index.go │ │ │ │ ├── dolt_index_test.go │ │ │ │ ├── dolt_map_iter.go │ │ │ │ ├── index_reader.go │ │ │ │ ├── key_builder.go │ │ │ │ ├── key_builder_test.go │ │ │ │ ├── keyless_iter.go │ │ │ │ ├── mergeable_indexes_setup_test.go │ │ │ │ ├── mergeable_indexes_test.go │ │ │ │ ├── noms_index_iter.go │ │ │ │ ├── prolly_index_iter.go │ │ │ │ ├── prolly_row_iter.go │ │ │ │ ├── secondary_iter.go │ │ │ │ ├── single_partition.go │ │ │ │ └── testutils.go │ │ │ ├── indexed_dolt_table.go │ │ │ ├── information_schema_database_schema.go │ │ │ ├── integration_test │ │ │ │ ├── database_revision_test.go │ │ │ │ ├── dolt_procedures_history_test.go │ │ │ │ ├── dolt_schemas_history_diff_test.go │ │ │ │ ├── history_table_test.go │ │ │ │ ├── json_value_test.go │ │ │ │ └── stockmarket_test.go │ │ │ ├── json │ │ │ │ ├── noms_json_value.go │ │ │ │ ├── noms_json_value_test.go │ │ │ │ └── testutils.go │ │ │ ├── kvexec │ │ │ │ ├── builder.go │ │ │ │ ├── count_agg.go │ │ │ │ ├── count_agg_test.go │ │ │ │ ├── lookup_join.go │ │ │ │ ├── lookup_join_test.go │ │ │ │ └── merge_join.go │ │ │ ├── logictest │ │ │ │ ├── dolt │ │ │ │ │ ├── doltharness.go │ │ │ │ │ └── doltharness_test.go │ │ │ │ ├── import.sql │ │ │ │ ├── main │ │ │ │ │ └── main.go │ │ │ │ └── regressions.sql │ │ │ ├── mysql_file_handler │ │ │ │ └── file_handler.go │ │ │ ├── overrides │ │ │ │ └── overrides.go │ │ │ ├── procedures_table.go │ │ │ ├── procedures_table_test.go │ │ │ ├── read_replica_database.go │ │ │ ├── read_replica_database_test.go │ │ │ ├── remotesrv.go │ │ │ ├── replication.go │ │ │ ├── replication_test.go │ │ │ ├── resolve │ │ │ │ ├── resolve_tables.go │ │ │ │ ├── search_path.go │ │ │ │ └── system_tables.go │ │ │ ├── rows.go │ │ │ ├── schema_override.go │ │ │ ├── schema_table.go │ │ │ ├── schema_table_test.go │ │ │ ├── schema_util_test.go │ │ │ ├── show_create_table.go │ │ │ ├── sqlddl_test.go │ │ │ ├── sqldelete_test.go │ │ │ ├── sqlfmt │ │ │ │ ├── row_fmt.go │ │ │ │ ├── row_fmt_test.go │ │ │ │ └── schema_fmt.go │ │ │ ├── sqlinsert_test.go │ │ │ ├── sqlpersist_test.go │ │ │ ├── sqlreplace_test.go │ │ │ ├── sqlselect_test.go │ │ │ ├── sqlupdate_test.go │ │ │ ├── sqlutil │ │ │ │ ├── convert.go │ │ │ │ ├── schema.go │ │ │ │ ├── sql_row.go │ │ │ │ └── static_errors.go │ │ │ ├── statspro │ │ │ │ ├── bucket_builder.go │ │ │ │ ├── bucket_builder_test.go │ │ │ │ ├── controller.go │ │ │ │ ├── doc.go │ │ │ │ ├── initdbhook.go │ │ │ │ ├── listener.go │ │ │ │ ├── listener_test.go │ │ │ │ ├── noop_controller.go │ │ │ │ ├── rate_limiter.go │ │ │ │ ├── rate_limiter_test.go │ │ │ │ ├── script_test.go │ │ │ │ ├── stats_kv.go │ │ │ │ ├── stats_kv_test.go │ │ │ │ ├── worker.go │ │ │ │ ├── worker_leak_test.go │ │ │ │ └── worker_test.go │ │ │ ├── system_variables.go │ │ │ ├── table_editor_fk_test.go │ │ │ ├── table_editor_index_test.go │ │ │ ├── tables.go │ │ │ ├── tables_test.go │ │ │ ├── temp_table.go │ │ │ ├── testdata.go │ │ │ ├── testutil.go │ │ │ ├── user_space_database.go │ │ │ ├── views_test.go │ │ │ ├── wildcard.go │ │ │ ├── wildcard_test.go │ │ │ └── writer │ │ │ │ ├── noms_fk_indexer.go │ │ │ │ ├── noms_table_writer.go │ │ │ │ ├── noms_table_writer_test.go │ │ │ │ ├── noms_write_session.go │ │ │ │ ├── prolly_fk_indexer.go │ │ │ │ ├── prolly_index_writer.go │ │ │ │ ├── prolly_index_writer_keyless.go │ │ │ │ ├── prolly_table_writer.go │ │ │ │ ├── prolly_write_session.go │ │ │ │ ├── schema_cache.go │ │ │ │ └── sessioned_table_editor.go │ │ ├── sqlserver │ │ │ └── dolt_server.go │ │ └── table │ │ │ ├── doc.go │ │ │ ├── editor │ │ │ ├── bulk_import_tea.go │ │ │ ├── creation │ │ │ │ ├── external_build_index.go │ │ │ │ ├── index.go │ │ │ │ └── index_test.go │ │ │ ├── index_edit_accumulator.go │ │ │ ├── index_editor.go │ │ │ ├── index_editor_test.go │ │ │ ├── index_operation_stack.go │ │ │ ├── index_operation_stack_test.go │ │ │ ├── keyless_table_editor.go │ │ │ ├── keyless_table_editor_test.go │ │ │ ├── pk_table_editor.go │ │ │ ├── pk_table_editor_test.go │ │ │ ├── table_edit_accumulator.go │ │ │ └── table_edit_accumulator_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── inmem_table.go │ │ │ ├── inmem_table_test.go │ │ │ ├── table_iterator.go │ │ │ ├── table_iterator_test.go │ │ │ ├── table_reader.go │ │ │ ├── table_writer.go │ │ │ ├── typed │ │ │ ├── json │ │ │ │ ├── json_diff_writer.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ └── writer.go │ │ │ ├── noms │ │ │ │ ├── doc.go │ │ │ │ ├── range_reader.go │ │ │ │ ├── range_reader_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_for_keys.go │ │ │ │ └── reader_for_keys_test.go │ │ │ └── parquet │ │ │ │ ├── reader.go │ │ │ │ ├── writer.go │ │ │ │ └── writer_test.go │ │ │ └── untyped │ │ │ ├── csv │ │ │ ├── doc.go │ │ │ ├── file_info.go │ │ │ ├── file_info_test.go │ │ │ ├── line.go │ │ │ ├── line_test.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ │ │ ├── doc.go │ │ │ ├── sqlexport │ │ │ ├── batch_sqlwriter.go │ │ │ ├── sql_diff_writer.go │ │ │ ├── sqlwriter.go │ │ │ └── sqlwriter_test.go │ │ │ ├── tabular │ │ │ ├── doc.go │ │ │ ├── fixedwidth_conflict_tablewriter.go │ │ │ ├── fixedwidth_diff_tablewriter.go │ │ │ ├── fixedwidth_tablewriter.go │ │ │ ├── fixedwidth_tablewriter_test.go │ │ │ └── stringwidth.go │ │ │ ├── untyped_rows.go │ │ │ ├── untyped_rows_test.go │ │ │ └── xlsx │ │ │ ├── file_info.go │ │ │ ├── marshaling.go │ │ │ ├── marshaling_test.go │ │ │ ├── reader.go │ │ │ └── test_files │ │ │ └── employees.xlsx │ ├── events │ │ ├── collector.go │ │ ├── context.go │ │ ├── emitter.go │ │ ├── event_flush.go │ │ ├── event_flush_test.go │ │ ├── events.go │ │ ├── events_test.go │ │ ├── file_backed_proc.go │ │ ├── file_backed_proc_test.go │ │ ├── metrics.go │ │ └── metrics_test.go │ └── utils │ │ ├── argparser │ │ ├── args_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── option.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ └── results.go │ │ ├── async │ │ ├── action_executor.go │ │ ├── action_executor_test.go │ │ ├── async_read_test.go │ │ ├── async_reader.go │ │ ├── errgroup.go │ │ ├── errgroup_test.go │ │ ├── ring_buffer.go │ │ └── ring_buffer_test.go │ │ ├── awsrefreshcreds │ │ └── creds.go │ │ ├── buffer │ │ ├── buffer.go │ │ └── buffer_test.go │ │ ├── circular │ │ ├── buff.go │ │ └── buff_test.go │ │ ├── concurrentmap │ │ ├── concurrentmap.go │ │ └── concurrentmap_test.go │ │ ├── config │ │ ├── config.go │ │ ├── config_hierarchy.go │ │ ├── config_hierarchy_test.go │ │ ├── doc.go │ │ ├── file_config.go │ │ ├── file_config_test.go │ │ ├── keys.go │ │ ├── map_config.go │ │ ├── map_config_test.go │ │ ├── prefix_config.go │ │ └── prefix_config_test.go │ │ ├── dynassert │ │ ├── dynassert.go │ │ └── dynassert_test.go │ │ ├── earl │ │ ├── url.go │ │ └── url_test.go │ │ ├── editor │ │ ├── edit.go │ │ └── edit_test.go │ │ ├── errors │ │ └── error_messages.go │ │ ├── file │ │ ├── mmap.go │ │ ├── open.go │ │ ├── open_windows.go │ │ └── sync.go │ │ ├── filesys │ │ ├── doc.go │ │ ├── fs.go │ │ ├── fs_test.go │ │ ├── inmemfs.go │ │ ├── localfs.go │ │ └── lock.go │ │ ├── funcitr │ │ ├── doc.go │ │ ├── funcitr.go │ │ └── funcitr_test.go │ │ ├── goroutinedump │ │ └── goroutinedump.go │ │ ├── gpg │ │ ├── sign.go │ │ ├── sign_test.go │ │ └── testdata │ │ │ └── private.pgp │ │ ├── http │ │ ├── requests.go │ │ └── requests_test.go │ │ ├── icusmoke │ │ ├── icu.go │ │ └── icu_test.go │ │ ├── iohelp │ │ ├── copy.go │ │ ├── doc.go │ │ ├── read.go │ │ ├── read_test.go │ │ ├── read_with_stats.go │ │ ├── write.go │ │ └── write_test.go │ │ ├── jwtauth │ │ ├── claims.go │ │ ├── jwks.go │ │ ├── provider_constants.go │ │ ├── validate.go │ │ └── validator.go │ │ ├── keymutex │ │ ├── keymutex.go │ │ └── keymutex_test.go │ │ ├── lockutil │ │ └── lockutil.go │ │ ├── minver │ │ ├── minver.go │ │ ├── minver_test.go │ │ └── minvertesting.go │ │ ├── osutil │ │ ├── core_other.go │ │ ├── core_windows.go │ │ └── shared.go │ │ ├── set │ │ ├── byteset.go │ │ ├── byteset_test.go │ │ ├── doc.go │ │ ├── strset.go │ │ ├── strset_test.go │ │ ├── uint64set.go │ │ └── uint64set_test.go │ │ ├── strhelp │ │ ├── string_help.go │ │ └── string_help_test.go │ │ ├── structwalk │ │ ├── walk.go │ │ └── walk_test.go │ │ ├── svcs │ │ ├── controller.go │ │ └── controller_test.go │ │ ├── test │ │ ├── doc.go │ │ ├── files.go │ │ ├── random.go │ │ ├── reader.go │ │ └── test_test.go │ │ ├── valctx │ │ └── valctx.go │ │ ├── valutil │ │ ├── doc.go │ │ ├── values.go │ │ └── values_test.go │ │ └── version │ │ ├── version.go │ │ └── version_test.go ├── performance │ ├── continuous_integration │ │ ├── SysbenchDockerfile │ │ ├── SysbenchDockerfile.dockerignore │ │ ├── mysqld.cnf │ │ └── sysbench-runner-tests-entrypoint.sh │ ├── dolt_log_bench │ │ ├── .gitignore │ │ └── dolt_log_test.go │ ├── import_benchmarker │ │ ├── README.md │ │ ├── cmd │ │ │ ├── main.go │ │ │ └── schema.sql │ │ ├── get_size.go │ │ ├── import_test.go │ │ ├── reporting │ │ │ ├── select_star.sql │ │ │ ├── summary.sql │ │ │ └── three_way_compare.sql │ │ ├── testdata │ │ │ ├── all.yaml │ │ │ ├── blob.yaml │ │ │ ├── ci.yaml │ │ │ ├── dolt_server.yaml │ │ │ ├── external.yaml │ │ │ ├── shuffle.yaml │ │ │ ├── size.yaml │ │ │ └── sql.yaml │ │ └── testdef.go │ ├── import_tester │ │ ├── csv_gen.py │ │ └── run_importer.sh │ ├── kvbench │ │ ├── bench_test.go │ │ ├── bitcask_store.go │ │ ├── bolt_store.go │ │ ├── mem_store.go │ │ ├── nbs_store.go │ │ └── prolly_store.go │ ├── memprof │ │ └── membench_test.go │ ├── microsysbench │ │ ├── .gitignore │ │ ├── sysbench_test.go │ │ └── testdata.sql │ ├── replicationbench │ │ ├── .gitignore │ │ ├── async_replica_test.go │ │ └── replica_test.go │ ├── scripts │ │ ├── .gitignore │ │ ├── local_sysbench.sh │ │ ├── local_tpcc.sh │ │ ├── mysql_sysbench.sh │ │ └── mysql_tpcc.sh │ ├── serverbench │ │ ├── .gitignore │ │ ├── bench_test.go │ │ └── diff_bench_test.go │ ├── sysbench │ │ ├── README.md │ │ ├── cmd │ │ │ └── main.go │ │ ├── reporting │ │ │ ├── systab.sql │ │ │ └── systab_summary.sql │ │ ├── sysbench_test.go │ │ ├── testdata │ │ │ ├── default-config.yaml │ │ │ ├── history.yaml │ │ │ ├── index-join-scan.yaml │ │ │ ├── log-join.yaml │ │ │ ├── read-write.yaml │ │ │ └── systab.yaml │ │ └── testdef.go │ └── utils │ │ ├── benchmark_runner │ │ ├── README.md │ │ ├── benchmark.go │ │ ├── config.go │ │ ├── constants.go │ │ ├── csv.go │ │ ├── csv_test.go │ │ ├── debug.go │ │ ├── dolt.go │ │ ├── dolt_server_config.go │ │ ├── dolt_tpcc.go │ │ ├── doltgres.go │ │ ├── doltgres_server_config.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── mysql.go │ │ ├── mysql_server_config.go │ │ ├── mysql_tpcc.go │ │ ├── postgres.go │ │ ├── postgres_server_config.go │ │ ├── profile.go │ │ ├── results.go │ │ ├── results_test.go │ │ ├── run.go │ │ ├── run_test.go │ │ ├── run_tpcc.go │ │ ├── server.go │ │ ├── server_config.go │ │ ├── sysbench.go │ │ ├── sysbench_config.go │ │ ├── sysbench_config_test.go │ │ ├── sysbench_tests.go │ │ ├── test_config.go │ │ ├── tester.go │ │ ├── tpcc.go │ │ ├── tpcc_config.go │ │ └── tpcc_tests.go │ │ └── dolt_builder │ │ ├── README.md │ │ ├── cmd │ │ └── main.go │ │ ├── constants.go │ │ ├── debug.go │ │ ├── git.go │ │ └── run.go ├── serial │ ├── addressmap.fbs │ ├── blob.fbs │ ├── branchcontrol.fbs │ ├── collation.fbs │ ├── commit.fbs │ ├── commitclosure.fbs │ ├── copyright.txt │ ├── doc.go │ ├── encoding.fbs │ ├── fileidentifiers.go │ ├── foreign_key.fbs │ ├── generate.sh │ ├── mergeartifacts.fbs │ ├── prolly.fbs │ ├── rootvalue.fbs │ ├── schema.fbs │ ├── stash.fbs │ ├── stashlist.fbs │ ├── stat.fbs │ ├── storeroot.fbs │ ├── table.fbs │ ├── tag.fbs │ ├── tuple.fbs │ ├── vectorindexnode.fbs │ └── workingset.fbs ├── store │ ├── .gitignore │ ├── README.md │ ├── atomicerr │ │ └── atomic_error.go │ ├── blobstore │ │ ├── blobstore.go │ │ ├── blobstore_test.go │ │ ├── errors.go │ │ ├── gcs.go │ │ ├── inmem.go │ │ ├── local.go │ │ ├── oci.go │ │ ├── oci_test.go │ │ ├── oss.go │ │ ├── oss_test.go │ │ └── range.go │ ├── chunks │ │ ├── chunk.go │ │ ├── chunk_store.go │ │ ├── chunk_store_common_test.go │ │ ├── chunk_test.go │ │ ├── cs_metrics_wrapper.go │ │ ├── memory_store.go │ │ ├── memory_store_test.go │ │ ├── tablefilestore.go │ │ └── test_utils.go │ ├── cmd │ │ └── noms │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── commit_iterator.go │ │ │ ├── noms.go │ │ │ ├── noms_blob.go │ │ │ ├── noms_blob_get.go │ │ │ ├── noms_blob_get_test.go │ │ │ ├── noms_blob_put.go │ │ │ ├── noms_cat.go │ │ │ ├── noms_config.go │ │ │ ├── noms_ds.go │ │ │ ├── noms_ds_test.go │ │ │ ├── noms_manifest.go │ │ │ ├── noms_root.go │ │ │ ├── noms_root_test.go │ │ │ ├── noms_show.go │ │ │ ├── noms_show_test.go │ │ │ ├── noms_stats.go │ │ │ ├── noms_walk.go │ │ │ ├── splunk.pl │ │ │ └── util │ │ │ ├── check_error.go │ │ │ ├── command.go │ │ │ ├── help.go │ │ │ └── kingpin_command.go │ ├── config │ │ ├── config.go │ │ ├── config_test.go │ │ ├── resolver.go │ │ └── resolver_test.go │ ├── constants │ │ └── version.go │ ├── d │ │ ├── try.go │ │ └── try_test.go │ ├── datas │ │ ├── commit.go │ │ ├── commit_closure.go │ │ ├── commit_meta.go │ │ ├── commit_meta_test.go │ │ ├── commit_options.go │ │ ├── commit_test.go │ │ ├── database.go │ │ ├── database_common.go │ │ ├── database_test.go │ │ ├── dataset.go │ │ ├── dataset_test.go │ │ ├── doc.go │ │ ├── fun_commit_hash.go │ │ ├── garbage_collection.go │ │ ├── pull │ │ │ ├── clone.go │ │ │ ├── pull_chunk_fetcher.go │ │ │ ├── pull_chunk_fetcher_test.go │ │ │ ├── pull_chunk_tracker.go │ │ │ ├── pull_chunk_tracker_test.go │ │ │ ├── pull_table_file_writer.go │ │ │ ├── pull_table_file_writer_test.go │ │ │ ├── puller.go │ │ │ ├── puller_test.go │ │ │ └── pulling.md │ │ ├── ref_closure.go │ │ ├── refmap.go │ │ ├── stash.go │ │ ├── stashlist.go │ │ ├── statistics.go │ │ ├── tag.go │ │ ├── tag_meta.go │ │ ├── tag_meta_test.go │ │ ├── tag_test.go │ │ ├── tuple.go │ │ └── workingset.go │ ├── diff │ │ ├── apply_patch.go │ │ ├── apply_patch_test.go │ │ ├── diff.go │ │ ├── diff_test.go │ │ ├── patch.go │ │ ├── patch_test.go │ │ └── print_diff.go │ ├── hash │ │ ├── base32.go │ │ ├── base32_test.go │ │ ├── hash.go │ │ ├── hash_slice.go │ │ ├── hash_slice_test.go │ │ └── hash_test.go │ ├── marshal │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── encode_type.go │ │ └── encode_type_test.go │ ├── merge │ │ ├── candidate.go │ │ ├── three_way.go │ │ ├── three_way_keyval_test.go │ │ ├── three_way_list.go │ │ ├── three_way_list_test.go │ │ ├── three_way_ordered_sequence.go │ │ ├── three_way_set_test.go │ │ └── three_way_test.go │ ├── metrics │ │ ├── histogram.go │ │ └── histogram_test.go │ ├── nbs │ │ ├── NBS-on-AWS.md │ │ ├── README.md │ │ ├── admin_newgen_to_oldgen.go │ │ ├── archive.go │ │ ├── archive_build.go │ │ ├── archive_chunk_source.go │ │ ├── archive_chunker.go │ │ ├── archive_inspect.go │ │ ├── archive_reader.go │ │ ├── archive_reader_test.go │ │ ├── archive_test.go │ │ ├── archive_writer.go │ │ ├── archive_writer_test.go │ │ ├── aws_table_chunk_source.go │ │ ├── aws_table_chunk_source_test.go │ │ ├── aws_table_persister.go │ │ ├── aws_table_persister_test.go │ │ ├── benchmarks │ │ │ ├── .gitignore │ │ │ ├── block_store_benchmarks.go │ │ │ ├── cachedrop │ │ │ │ └── drop_cache.go │ │ │ ├── chunker │ │ │ │ ├── .gitignore │ │ │ │ └── main.go │ │ │ ├── data_source.go │ │ │ ├── drop_cache_linux.go │ │ │ ├── drop_cache_other.go │ │ │ ├── file_block_store.go │ │ │ ├── gen │ │ │ │ ├── gen.go │ │ │ │ └── rolling_value_hasher.go │ │ │ ├── main.go │ │ │ └── null_block_store.go │ │ ├── block_store_test.go │ │ ├── bs_manifest.go │ │ ├── bs_persister.go │ │ ├── byte_sink.go │ │ ├── byte_sink_test.go │ │ ├── chunk_fetcher.go │ │ ├── chunk_source_adapter.go │ │ ├── cmp_chunk_table_writer.go │ │ ├── cmp_chunk_table_writer_test.go │ │ ├── conjoiner.go │ │ ├── conjoiner_test.go │ │ ├── dynamo_fake_test.go │ │ ├── dynamo_manifest.go │ │ ├── dynamo_manifest_test.go │ │ ├── empty_chunk_source.go │ │ ├── file_manifest.go │ │ ├── file_manifest_test.go │ │ ├── file_table_persister.go │ │ ├── file_table_persister_test.go │ │ ├── file_table_reader.go │ │ ├── file_table_reader_test.go │ │ ├── frag │ │ │ ├── .gitignore │ │ │ └── main.go │ │ ├── gc_copier.go │ │ ├── generational_chunk_store.go │ │ ├── generational_chunk_store_test.go │ │ ├── ghost_store.go │ │ ├── ghost_store_test.go │ │ ├── index_transformer.go │ │ ├── index_transformer_test.go │ │ ├── journal.go │ │ ├── journal_chunk_source.go │ │ ├── journal_index_record.go │ │ ├── journal_index_record_test.go │ │ ├── journal_inspect.go │ │ ├── journal_inspect_test.go │ │ ├── journal_record.go │ │ ├── journal_record_test.go │ │ ├── journal_test.go │ │ ├── journal_writer.go │ │ ├── journal_writer_test.go │ │ ├── manifest.go │ │ ├── manifest_cache.go │ │ ├── manifest_cache_test.go │ │ ├── mem_table.go │ │ ├── mem_table_test.go │ │ ├── metadata.go │ │ ├── mmap_index_reader.go │ │ ├── mmap_table_reader_unix.go │ │ ├── mmap_table_reader_windows.go │ │ ├── must_test.go │ │ ├── nbs_metrics_wrapper.go │ │ ├── no_conjoin_bs_persister.go │ │ ├── quota.go │ │ ├── race_off.go │ │ ├── race_on.go │ │ ├── reflog_ring_buffer.go │ │ ├── reflog_ring_buffer_test.go │ │ ├── root_tracker_test.go │ │ ├── s3_fake_test.go │ │ ├── s3_object_reader.go │ │ ├── s3_object_reader_test.go │ │ ├── s3_table_reader.go │ │ ├── s3_table_reader_test.go │ │ ├── sizes.go │ │ ├── sizes_test.go │ │ ├── stats.go │ │ ├── stats_test.go │ │ ├── store.go │ │ ├── store_test.go │ │ ├── table.go │ │ ├── table_index.go │ │ ├── table_index_test.go │ │ ├── table_persister.go │ │ ├── table_persister_test.go │ │ ├── table_reader.go │ │ ├── table_reader_test.go │ │ ├── table_set.go │ │ ├── table_set_test.go │ │ ├── table_test.go │ │ ├── table_writer.go │ │ ├── test │ │ │ └── manifest_clobber.go │ │ ├── testdata │ │ │ └── 0oa7mch34jg1rvghrnhr4shrp2fm4ftd.idx │ │ └── util.go │ ├── nomdl │ │ ├── lexer.go │ │ ├── parser.go │ │ └── parser_test.go │ ├── perf │ │ ├── codec-perf-rig │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ └── main.go │ │ └── suite │ │ │ ├── suite.go │ │ │ └── suite_test.go │ ├── pool │ │ └── buffer_pool.go │ ├── prolly │ │ ├── .gitignore │ │ ├── address_map.go │ │ ├── address_map_test.go │ │ ├── artifact_map.go │ │ ├── artifact_map_test.go │ │ ├── benchmark │ │ │ ├── .gitignore │ │ │ ├── benchmark_batch_writes_test.go │ │ │ ├── benchmark_read_test.go │ │ │ ├── benchmark_write_test.go │ │ │ └── utils_test.go │ │ ├── commit_closure.go │ │ ├── commit_closure_test.go │ │ ├── doc.go │ │ ├── map_diff_key_range_test.go │ │ ├── map_diff_test.go │ │ ├── map_interface.go │ │ ├── map_merge_test.go │ │ ├── map_range_diff_test.go │ │ ├── map_test.go │ │ ├── message │ │ │ ├── address_map.go │ │ │ ├── blob.go │ │ │ ├── commit_closure.go │ │ │ ├── item_access.go │ │ │ ├── merge_artifacts.go │ │ │ ├── message.go │ │ │ ├── prolly_map.go │ │ │ ├── prolly_map_test.go │ │ │ ├── serialize.go │ │ │ ├── varint.go │ │ │ ├── varint_test.go │ │ │ └── vector_index.go │ │ ├── mutable_map_checkpoint_test.go │ │ ├── mutable_map_flusher.go │ │ ├── mutable_map_read_test.go │ │ ├── mutable_map_write_test.go │ │ ├── patch_based_merging_test.go │ │ ├── proximity_map.go │ │ ├── proximity_map_test.go │ │ ├── proximity_mutable_map.go │ │ ├── shim │ │ │ └── shim.go │ │ ├── sort │ │ │ ├── external.go │ │ │ └── external_test.go │ │ ├── traditional_merging_test.go │ │ ├── tree │ │ │ ├── addr_diff.go │ │ │ ├── addr_diff_test.go │ │ │ ├── blob_bench_test.go │ │ │ ├── blob_builder.go │ │ │ ├── blob_builder_test.go │ │ │ ├── chunker.go │ │ │ ├── chunker_test.go │ │ │ ├── content_address_test.go │ │ │ ├── diff.go │ │ │ ├── diff_test.go │ │ │ ├── diffop_string.go │ │ │ ├── indexed_json_diff.go │ │ │ ├── json_chunker.go │ │ │ ├── json_cursor.go │ │ │ ├── json_diff.go │ │ │ ├── json_diff_test.go │ │ │ ├── json_diff_test_cases.go │ │ │ ├── json_indexed_document.go │ │ │ ├── json_indexed_document_test.go │ │ │ ├── json_location.go │ │ │ ├── json_scanner.go │ │ │ ├── json_type_categories.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ ├── mutable_map.go │ │ │ ├── mutator.go │ │ │ ├── node.go │ │ │ ├── node_builder.go │ │ │ ├── node_cache.go │ │ │ ├── node_cache_test.go │ │ │ ├── node_cursor.go │ │ │ ├── node_cursor_test.go │ │ │ ├── node_splitter.go │ │ │ ├── node_splitter_test.go │ │ │ ├── node_store.go │ │ │ ├── node_test.go │ │ │ ├── patch_generator.go │ │ │ ├── patch_test.go │ │ │ ├── prolly_fields.go │ │ │ ├── prolly_fields_test.go │ │ │ ├── proximity_map.go │ │ │ ├── samples_test.go │ │ │ ├── stats.go │ │ │ ├── stats_test.go │ │ │ ├── testutils.go │ │ │ ├── three_way_differ.go │ │ │ ├── three_way_differ_test.go │ │ │ ├── tree_patcher.go │ │ │ ├── z_encoding.go │ │ │ └── z_encoding_test.go │ │ ├── tuple_map.go │ │ ├── tuple_mutable_map.go │ │ ├── tuple_range.go │ │ ├── tuple_range_iter.go │ │ ├── tuple_range_iter_test.go │ │ ├── tuple_range_test.go │ │ ├── utils_test.go │ │ └── vector_index_chunker.go │ ├── skip │ │ ├── list.go │ │ ├── list_bench_test.go │ │ └── list_test.go │ ├── sloppy │ │ ├── sloppy.go │ │ └── sloppy_test.go │ ├── spec │ │ ├── absolute_path.go │ │ ├── absolute_path_test.go │ │ ├── spec.go │ │ ├── spec_test.go │ │ └── util.go │ ├── store_test.go │ ├── types │ │ ├── apply_map_edits.go │ │ ├── blob.go │ │ ├── blob_leaf_sequence.go │ │ ├── blob_test.go │ │ ├── bool.go │ │ ├── buffered_sequence_iterator.go │ │ ├── codec.go │ │ ├── codec_test.go │ │ ├── collection.go │ │ ├── collection_test.go │ │ ├── common_supertype.go │ │ ├── common_supertype_test.go │ │ ├── compare_test.go │ │ ├── decimal.go │ │ ├── decimal_test.go │ │ ├── dumb_edit_accumulator.go │ │ ├── edit_distance.go │ │ ├── edit_distance_test.go │ │ ├── edits │ │ │ ├── async_sorted_edits.go │ │ │ ├── async_sorted_edits_test.go │ │ │ ├── disk_backed.go │ │ │ ├── disk_backed_edits_test.go │ │ │ ├── disk_edit_flusher.go │ │ │ ├── disk_edit_flusher_test.go │ │ │ ├── edit_prodiver_merger.go │ │ │ ├── edit_prodiver_merger_test.go │ │ │ ├── kvp_coll_builder.go │ │ │ ├── kvp_coll_builder_test.go │ │ │ ├── kvp_coll_itr.go │ │ │ ├── kvp_coll_itr_test.go │ │ │ ├── kvp_collection.go │ │ │ ├── kvp_collection_test.go │ │ │ ├── kvp_itr_test.go │ │ │ ├── sorted_edit_itr.go │ │ │ └── sorted_edit_itr_test.go │ │ ├── encode_human_readable.go │ │ ├── encode_human_readable_test.go │ │ ├── encoding_test.go │ │ ├── equals_test.go │ │ ├── extended.go │ │ ├── float.go │ │ ├── float_util.go │ │ ├── format.go │ │ ├── geometry.go │ │ ├── geometry_collection.go │ │ ├── get_hash.go │ │ ├── incremental_test.go │ │ ├── indexed_sequence_diff.go │ │ ├── indexed_sequences.go │ │ ├── inlineblob.go │ │ ├── int.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── kvp.go │ │ ├── leaf_sequence.go │ │ ├── less.go │ │ ├── linestring.go │ │ ├── list.go │ │ ├── list_editor.go │ │ ├── list_editor_test.go │ │ ├── list_iterator.go │ │ ├── list_iterator_test.go │ │ ├── list_leaf_sequence.go │ │ ├── list_test.go │ │ ├── make_type.go │ │ ├── map.go │ │ ├── map_editor.go │ │ ├── map_iterator.go │ │ ├── map_iterator_test.go │ │ ├── map_leaf_sequence.go │ │ ├── map_test.go │ │ ├── meta_sequence.go │ │ ├── multilinestring.go │ │ ├── multipoint.go │ │ ├── multipolygon.go │ │ ├── must_test.go │ │ ├── noms_kind.go │ │ ├── noms_kind_test.go │ │ ├── null_value.go │ │ ├── ordered_sequences.go │ │ ├── ordered_sequences_diff.go │ │ ├── ordered_sequences_diff_test.go │ │ ├── ordered_sequences_test.go │ │ ├── path.go │ │ ├── path_test.go │ │ ├── perf │ │ │ ├── dummy.go │ │ │ └── perf_test.go │ │ ├── point.go │ │ ├── polygon.go │ │ ├── primitives_test.go │ │ ├── read_geometry.go │ │ ├── ref.go │ │ ├── ref_test.go │ │ ├── rolling_value_hasher.go │ │ ├── sequence.go │ │ ├── sequence_chunker.go │ │ ├── sequence_concat.go │ │ ├── sequence_cursor.go │ │ ├── sequence_cursor_test.go │ │ ├── serial_message.go │ │ ├── set.go │ │ ├── set_editor.go │ │ ├── set_iterator.go │ │ ├── set_iterator_test.go │ │ ├── set_leaf_sequence.go │ │ ├── set_test.go │ │ ├── simplify.go │ │ ├── simplify_test.go │ │ ├── sort.go │ │ ├── string.go │ │ ├── string_test.go │ │ ├── struct.go │ │ ├── struct_test.go │ │ ├── subtype.go │ │ ├── subtype_test.go │ │ ├── timestamp.go │ │ ├── tuple.go │ │ ├── tuple_stream.go │ │ ├── tuple_stream_test.go │ │ ├── tuple_test.go │ │ ├── type.go │ │ ├── type_desc.go │ │ ├── type_test.go │ │ ├── uint.go │ │ ├── util_test.go │ │ ├── uuid.go │ │ ├── validate_type.go │ │ ├── validating_decoder.go │ │ ├── validating_decoder_test.go │ │ ├── value.go │ │ ├── value_decoder.go │ │ ├── value_stats.go │ │ ├── value_store.go │ │ ├── value_store_test.go │ │ ├── walk_refs.go │ │ ├── walk_refs_test.go │ │ └── write_geometry.go │ ├── util │ │ ├── clienttest │ │ │ └── client_test_suite.go │ │ ├── datetime │ │ │ ├── date_time.go │ │ │ └── date_time_test.go │ │ ├── exit │ │ │ └── exit.go │ │ ├── functions │ │ │ ├── all.go │ │ │ └── all_test.go │ │ ├── outputpager │ │ │ └── page_output.go │ │ ├── profile │ │ │ └── profile.go │ │ ├── progressreader │ │ │ └── reader.go │ │ ├── random │ │ │ ├── id.go │ │ │ └── id_test.go │ │ ├── sizecache │ │ │ ├── size_cache.go │ │ │ └── size_cache_test.go │ │ ├── status │ │ │ └── status.go │ │ ├── tempfiles │ │ │ └── temp_files.go │ │ ├── test │ │ │ └── equals_ignore_hashes.go │ │ ├── verbose │ │ │ ├── verbose.go │ │ │ └── verbose_test.go │ │ └── writers │ │ │ ├── max_line_writer.go │ │ │ ├── prefix_writer.go │ │ │ └── writers_test.go │ ├── val │ │ ├── adaptive_value.go │ │ ├── codec.go │ │ ├── codec_test.go │ │ ├── doc.go │ │ ├── extended_comparator.go │ │ ├── keyless_tuple.go │ │ ├── prefix.go │ │ ├── triple.go │ │ ├── triple_test.go │ │ ├── tuple.go │ │ ├── tuple_builder.go │ │ ├── tuple_builder_test.go │ │ ├── tuple_compare.go │ │ ├── tuple_descriptor.go │ │ ├── tuple_descriptor_test.go │ │ ├── tuple_test.go │ │ └── value_store.go │ └── valuefile │ │ ├── file_value_store.go │ │ ├── value_file.go │ │ └── value_file_test.go └── utils │ ├── 3pdeps │ ├── ICU4C_LICENSE │ ├── MIMALLOC_LICENSE │ ├── MUSL_COPYRIGHT │ └── main.go │ ├── batsee │ ├── README.md │ └── main.go │ ├── concurrency │ └── runner.go │ ├── copyrightshdrs │ └── main.go │ ├── devbuild │ ├── README.md │ └── build.sh │ ├── escape-analysis │ ├── escape-analysis.bat │ ├── escape-analysis.sh │ ├── goland-file-watcher-config-macos.png │ └── goland-file-watcher-config-windows.png │ ├── genminver_validation │ └── main.go │ ├── hasher │ ├── main.go │ └── main_test.go │ ├── prepr │ └── prepr.sh │ ├── publishrelease │ ├── buildindocker.sh │ ├── buildpgobinaries.sh │ └── install.sh │ ├── remotesrv │ ├── README.md │ ├── cscache.go │ └── main.go │ ├── repofmt │ ├── check_bats_fmt.sh │ ├── check_fmt.sh │ └── format_repo.sh │ └── rpmbuild │ ├── BUILD │ └── .gitignore │ ├── README.md │ ├── RPMS │ └── .gitignore │ ├── SOURCES │ └── .gitignore │ ├── SPECS │ ├── .gitignore │ └── dolt.spec │ └── SRPMS │ └── .gitignore ├── images ├── Dolt-Logo@3x.svg ├── getting-started-new-updates.png ├── getting-started-tp-connect.png └── getting-started-tp.png ├── integration-tests ├── DataDumpLoadDockerfile ├── ORMDockerfile ├── bats │ ├── .gitignore │ ├── 1pk5col-ints.bats │ ├── 1pk5col-strings.bats │ ├── 1pksupportedtypes.bats │ ├── 2pk5cols-ints.bats │ ├── README.md │ ├── add-patch-expect │ │ ├── all_none.expect │ │ ├── help_quit.expect │ │ ├── keyless.expect │ │ ├── no_then_a.expect │ │ ├── restart_multiple_times.expect │ │ ├── summary_updates.expect │ │ └── yes_then_d.expect │ ├── add-patch.bats │ ├── add.bats │ ├── admin-archive-inspect.bats │ ├── admin-conjoin.bats │ ├── archive-aws.bats │ ├── archive-test-repos │ │ ├── README.txt │ │ ├── base │ │ │ ├── noms │ │ │ │ ├── 8p5e2m6skovfdjlh4jg3llr8sfvu384l │ │ │ │ ├── LOCK │ │ │ │ ├── manifest │ │ │ │ └── oldgen │ │ │ │ │ ├── 29o8a3uevcpr15tilcemb3s438edmoog.darc │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── dnu4lr5j8sstbj5usbld7alsnuj5nf23.darc │ │ │ │ │ └── manifest │ │ │ └── repo_state.json │ │ ├── large_clone │ │ │ ├── noms │ │ │ │ ├── 29o8a3uevcpr15tilcemb3s438edmoog.darc │ │ │ │ ├── LOCK │ │ │ │ ├── dnu4lr5j8sstbj5usbld7alsnuj5nf23.darc │ │ │ │ ├── manifest │ │ │ │ ├── oldgen │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── b5j6kmj2m68sukiu22ouoke7u9281a06 │ │ │ │ │ └── manifest │ │ │ │ └── p6d0rsovtipdk6r2b1kh9qrndif41703 │ │ │ └── repo_state.json │ │ ├── small_clone │ │ │ ├── noms │ │ │ │ ├── 29o8a3uevcpr15tilcemb3s438edmoog.darc │ │ │ │ ├── LOCK │ │ │ │ ├── dnu4lr5j8sstbj5usbld7alsnuj5nf23.darc │ │ │ │ ├── manifest │ │ │ │ ├── oldgen │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── c5j9u4ced6eg6cnegk0mgdglc3t04air │ │ │ │ │ └── manifest │ │ │ │ └── sv0o2e33pel8caor7979s4rk227raink │ │ │ └── repo_state.json │ │ ├── v1 │ │ │ ├── noms │ │ │ │ ├── 8p5e2m6skovfdjlh4jg3llr8sfvu384l │ │ │ │ ├── LOCK │ │ │ │ ├── manifest │ │ │ │ └── oldgen │ │ │ │ │ ├── 29o8a3uevcpr15tilcemb3s438edmoog.darc │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── dnu4lr5j8sstbj5usbld7alsnuj5nf23.darc │ │ │ │ │ └── manifest │ │ │ └── repo_state.json │ │ └── v2 │ │ │ ├── noms │ │ │ ├── LOCK │ │ │ ├── i8ivrn485g73hao1foo3p7l2clq3gqqv │ │ │ ├── manifest │ │ │ └── oldgen │ │ │ │ ├── 27avtn2a3upddh52eu750m4709gfps7s.darc │ │ │ │ ├── LOCK │ │ │ │ ├── manifest │ │ │ │ └── sc0dq3agumuop5ngirrn7nqtgbk7lbrv │ │ │ └── repo_state.json │ ├── archive.bats │ ├── arg-parsing.bats │ ├── auto_increment.bats │ ├── auto_increment_lock_modes.bats │ ├── backup.bats │ ├── bats.bats │ ├── bats.sql │ ├── blame-system-view.bats │ ├── blame.bats │ ├── branch-activity.bats │ ├── branch-control.bats │ ├── branch.bats │ ├── caching_sha2_password.bats │ ├── case-sensitivity.bats │ ├── certs │ │ ├── README.MD │ │ ├── alt-ca-cert.pem │ │ ├── alt-ca-key.pem │ │ ├── alt-client-cert.pem │ │ ├── alt-client-key.pem │ │ ├── ca-key.pem │ │ ├── ca.pem │ │ ├── client-cert.pem │ │ ├── client-key.pem │ │ ├── client-req.pem │ │ ├── expired-cert.pem │ │ ├── expired-key.pem │ │ ├── server-cert.pem │ │ ├── server-key.pem │ │ └── server-req.pem │ ├── checkout.bats │ ├── cherry-pick.bats │ ├── chunk-journal.bats │ ├── ci.bats │ ├── cli-hosted.bats │ ├── clone-drop.bats │ ├── column_tags.bats │ ├── commit.bats │ ├── commit_tags.bats │ ├── common.bash.bats │ ├── config-home.bats │ ├── config.bats │ ├── conflict-cat.bats │ ├── conflict-detection-2.bats │ ├── conflict-detection.bats │ ├── conflicts-resolve.bats │ ├── constraint-violations.bats │ ├── copy-tags.bats │ ├── corrupt_dbs │ │ ├── README.md │ │ ├── bad_commit │ │ │ ├── noms │ │ │ │ ├── 9tj851gpv71861ln5k6uutfot66u79r4 │ │ │ │ ├── LOCK │ │ │ │ ├── manifest │ │ │ │ └── oldgen │ │ │ │ │ ├── LOCK │ │ │ │ │ ├── aa3a08lf6sbtq9cl58mledifrqvt3fid │ │ │ │ │ └── manifest │ │ │ └── repo_state.json │ │ ├── bad_journal_crc │ │ │ ├── noms │ │ │ │ ├── LOCK │ │ │ │ ├── journal.idx │ │ │ │ ├── manifest │ │ │ │ └── vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv │ │ │ └── repo_state.json │ │ ├── bad_journal_crc_2 │ │ │ ├── noms │ │ │ │ ├── LOCK │ │ │ │ ├── journal.idx │ │ │ │ ├── manifest │ │ │ │ └── vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv │ │ │ └── repo_state.json │ │ └── journal_data.bin │ ├── cp-and-mv.bats │ ├── create-views.bats │ ├── createchunk.bats │ ├── creds.bats │ ├── db-revision-specifiers.bats │ ├── debug.bats │ ├── default-values.bats │ ├── deleted-branches.bats │ ├── diff-stat.bats │ ├── diff-system.expect │ ├── diff.bats │ ├── diff.json │ ├── docker-entrypoint.bats │ ├── docs.bats │ ├── dolt-test-run.bats │ ├── doltpy.bats │ ├── drop-create.bats │ ├── dump-docs.bats │ ├── dump.bats │ ├── empty-repo.bats │ ├── events.bats │ ├── export-tables.bats │ ├── feature-version.bats │ ├── fetch.bats │ ├── filter-branch.bats │ ├── foreign-keys-invert-pk.bats │ ├── foreign-keys.bats │ ├── fsck.bats │ ├── fulltext.bats │ ├── garbage_collection.bats │ ├── gen_vals.awk │ ├── global-args.bats │ ├── helper │ │ ├── 1pk5col-ints.csv │ │ ├── 1pk5col-ints.json │ │ ├── 1pk5col-ints.psv │ │ ├── 1pk5col-ints.sql │ │ ├── 1pk5col-nulls.csv │ │ ├── 1pk5col-strings-newlines.csv │ │ ├── 1pk5col-strings.csv │ │ ├── 1pksupportedtypes.csv │ │ ├── 2pk5col-ints.csv │ │ ├── bad-characters.csv │ │ ├── bad.csv │ │ ├── bad.data │ │ ├── bad.xlsx │ │ ├── big_spatial.sql │ │ ├── caps-column-names.csv │ │ ├── common.bash │ │ ├── common_expect_functions.tcl │ │ ├── data-generation.bash │ │ ├── employees-sch-bad.sql │ │ ├── employees-sch.sql │ │ ├── employees-tbl-bad.json │ │ ├── employees-tbl-new.json │ │ ├── employees-tbl-schema-unordered.csv │ │ ├── employees-tbl-schema-unordered.json │ │ ├── employees-tbl-schema-unordered.utf16bebom.csv │ │ ├── employees-tbl-schema-unordered.utf16lebom.csv │ │ ├── employees-tbl-schema-unordered.utf8bom.csv │ │ ├── employees-tbl-schema-wrong.csv │ │ ├── employees-tbl-schema-wrong.json │ │ ├── employees-tbl.json │ │ ├── employees-tbl.utf16bebom.json │ │ ├── employees-tbl.utf16lebom.json │ │ ├── employees-tbl.utf8bom.json │ │ ├── employees.xlsx │ │ ├── empty-strings-null-values.json │ │ ├── escaped-characters.csv │ │ ├── index-on-writes-common.bash │ │ ├── index_onepk.csv │ │ ├── index_onepk_non_unique.csv │ │ ├── jails.csv │ │ ├── known-decapitated.jwk │ │ ├── known-good.jwk │ │ ├── known-truncated.jwk │ │ ├── local-remote.bash │ │ ├── old_dolt_schemas │ │ │ ├── noms │ │ │ │ ├── 5fms6l3ffldbk6t8qjumnjstmurvppk8 │ │ │ │ ├── LOCK │ │ │ │ ├── manifest │ │ │ │ └── oldgen │ │ │ │ │ ├── 6vvlbeph7glt2sskq43npe56la8p9akc │ │ │ │ │ ├── LOCK │ │ │ │ │ └── manifest │ │ │ └── repo_state.json │ │ ├── old_old_dolt_schemas │ │ │ ├── noms │ │ │ │ ├── 4bujnjuatdli0klda7ucot0tl836jujt │ │ │ │ ├── 63c0dojobm5j7arp99hiq78hj1rtp7m5 │ │ │ │ ├── LOCK │ │ │ │ ├── aum9p7826iqaeq0pjtqlcn56hoj5nhht │ │ │ │ ├── chghnlvugtiui6khfo29cpfnfr3166qc │ │ │ │ ├── d0b8ibrrjvvv3f0mtd7hathtjq2vhig9 │ │ │ │ ├── erturgf7to0f6r8prlbllflbshg5li4n │ │ │ │ ├── manifest │ │ │ │ ├── oik6v50p7q6as4t7qg7f1i06iomt9vn9 │ │ │ │ ├── oktjimrpqi8m9dbpt3c7ikoaolhgtr2n │ │ │ │ ├── qe0mct6rf8puhdnqecm185p63dacaqrt │ │ │ │ ├── ro000svvgga0k7hatg7fta9j8ismtc3b │ │ │ │ └── u9c6ttq6ddrgqdfbod9pg2vv79ab6crt │ │ │ └── repo_state.json │ │ ├── parquet │ │ │ ├── sequences.parquet │ │ │ ├── sequences.sql │ │ │ ├── strings.parquet │ │ │ └── strings.sql │ │ ├── pytest.py │ │ ├── queries │ │ │ ├── 1pksupportedtypes │ │ │ │ ├── add.sql │ │ │ │ ├── create_table.sql │ │ │ │ ├── delete.sql │ │ │ │ └── update.sql │ │ │ └── 2pk5col-ints │ │ │ │ ├── add.sql │ │ │ │ ├── all_pk_update.sql │ │ │ │ ├── create_table.sql │ │ │ │ ├── delete.sql │ │ │ │ ├── single_pk_update.sql │ │ │ │ └── update.sql │ │ ├── query-server-common.bash │ │ ├── remotesrv-common.bash │ │ ├── sql-diff.bash │ │ ├── sql-reserved-column-name.csv │ │ ├── states.csv │ │ ├── testEvents │ │ │ ├── Epb8UsWYXQCy2c0xeLDl3g.devts │ │ │ ├── QkPcFh6D8c7qvaP8jWULqQ.devts │ │ │ ├── SQMaInRFa-u0fBtNVZJFJA.devts │ │ │ └── _BWNaFSa7hsRAUydECsSPQ.devts │ │ ├── windows-compat.bash │ │ ├── with_utf16be_bom.sql │ │ ├── with_utf16le_bom.sql │ │ └── with_utf8_bom.sql │ ├── ignore.bats │ ├── import-append-tables.bats │ ├── import-create-tables.bats │ ├── import-mysqldump.bats │ ├── import-no-header-csv.bats │ ├── import-no-header-psv.bats │ ├── import-replace-tables.bats │ ├── import-tables.bats │ ├── import-update-tables.bats │ ├── index-on-writes-2.bats │ ├── index-on-writes.bats │ ├── index.bats │ ├── init.bats │ ├── json-diff.bats │ ├── json-large-value-insert.sql │ ├── json-new-fmt.bats │ ├── json-oldformat-repo │ │ └── .dolt │ │ │ ├── config.json │ │ │ ├── noms │ │ │ ├── LOCK │ │ │ ├── journal.idx │ │ │ ├── manifest │ │ │ └── vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv │ │ │ ├── repo_state.json │ │ │ └── stats │ │ │ └── .dolt │ │ │ ├── config.json │ │ │ ├── noms │ │ │ ├── LOCK │ │ │ ├── journal.idx │ │ │ ├── manifest │ │ │ └── vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv │ │ │ └── repo_state.json │ ├── json-oldformat.bats │ ├── json.bats │ ├── keyless-foreign-keys.bats │ ├── keyless.bats │ ├── large-update.bats │ ├── log.bats │ ├── log.expect │ ├── ls.bats │ ├── merge-3way-schema-changes.bats │ ├── merge-base.bats │ ├── merge.bats │ ├── migrate.bats │ ├── multidb.bats │ ├── multiple-tables.bats │ ├── mutual-tls-auth.bats │ ├── mysql.db │ ├── no-repo.bats │ ├── nonlocal.bats │ ├── pager.bats │ ├── pager.expect │ ├── performance-repo │ │ └── .dolt │ │ │ ├── config.json │ │ │ ├── noms │ │ │ ├── LOCK │ │ │ ├── journal.idx │ │ │ ├── manifest │ │ │ └── vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv │ │ │ └── repo_state.json │ ├── performance.bats │ ├── primary-key-changes.bats │ ├── private.pgp │ ├── privs.json │ ├── processlist.bats │ ├── profile.bats │ ├── pull.bats │ ├── push.bats │ ├── query-catalog.bats │ ├── query-diff.bats │ ├── rebase.bats │ ├── reflog.bats │ ├── regression-tests.bats │ ├── remote-cmd.bats │ ├── remotes-aws.bats │ ├── remotes-file-system.bats │ ├── remotes-localbs.bats │ ├── remotes-push-pull.bats │ ├── remotes-sql-server.bats │ ├── remotes.bats │ ├── remotesrv.bats │ ├── rename-tables.bats │ ├── replace.bats │ ├── replication-multidb.bats │ ├── replication.bats │ ├── reset.bats │ ├── revert.bats │ ├── rm.bats │ ├── schema-changes.bats │ ├── schema-conflicts.bats │ ├── schema-export.bats │ ├── schema-import.bats │ ├── send-metrics.bats │ ├── shallow-clone.bats │ ├── show.bats │ ├── signed.bats │ ├── spatial-index.bats │ ├── sql-add.bats │ ├── sql-auto-gc.bats │ ├── sql-backup.bats │ ├── sql-batch.bats │ ├── sql-branch.bats │ ├── sql-charsets-collations.bats │ ├── sql-check-constraints.bats │ ├── sql-checkout.bats │ ├── sql-cherry-pick.bats │ ├── sql-clean.bats │ ├── sql-commit-diff.bats │ ├── sql-commit.bats │ ├── sql-config.bats │ ├── sql-conflicts-resolve.bats │ ├── sql-conflicts.bats │ ├── sql-create-database.bats │ ├── sql-create-tables.bats │ ├── sql-delimiter.expect │ ├── sql-diff.bats │ ├── sql-export.bats │ ├── sql-fetch.bats │ ├── sql-load-data.bats │ ├── sql-local-remote.bats │ ├── sql-merge.bats │ ├── sql-multi-db.bats │ ├── sql-mysqldb-privs.bats │ ├── sql-privs.bats │ ├── sql-procedure-privs.bats │ ├── sql-pull.bats │ ├── sql-push.bats │ ├── sql-reflog.bats │ ├── sql-reserved-column-name.bats │ ├── sql-reset.bats │ ├── sql-server-config-file-generation.bats │ ├── sql-server-mcp-config.bats │ ├── sql-server-mcp.bats │ ├── sql-server-mysql.expect │ ├── sql-server-remotesrv.bats │ ├── sql-server.bats │ ├── sql-shell-binary-as-hex.expect │ ├── sql-shell-commit-time.expect │ ├── sql-shell-empty-prompt.expect │ ├── sql-shell-error.expect │ ├── sql-shell-multi-stmt-timings.expect │ ├── sql-shell-ok-result.expect │ ├── sql-shell-prompt.expect │ ├── sql-shell-slash-cmds.expect │ ├── sql-shell-use.expect │ ├── sql-shell-warnings.expect │ ├── sql-shell.bats │ ├── sql-shell.expect │ ├── sql-show-warnings.expect │ ├── sql-show.bats │ ├── sql-spatial-types.bats │ ├── sql-stash.bats │ ├── sql-status.bats │ ├── sql-tags.bats │ ├── sql-unique-error.expect │ ├── sql-update-column-tag.bats │ ├── sql-use.expect │ ├── sql-vertical-format.expect │ ├── sql-warning-detail.expect │ ├── sql-warning-summary.expect │ ├── sql-works-after-failing-query.expect │ ├── sql.bats │ ├── stash.bats │ ├── stats.bats │ ├── status.bats │ ├── system-tables.bats │ ├── tableplus.bats │ ├── triggers.bats │ ├── types.bats │ ├── undrop.bats │ ├── validation.bats │ ├── vector-index.bats │ ├── verify-constraints.bats │ ├── window.bats │ └── zstd.bats ├── compatibility │ ├── README.md │ ├── runner.sh │ └── test_files │ │ ├── backward_compatible_versions.txt │ │ ├── bats │ │ ├── compatibility.bats │ │ └── helper │ │ │ ├── common.bash │ │ │ └── windows-compat.bash │ │ ├── big_table.sql │ │ ├── forward_compatible_versions.txt │ │ └── setup_repo.sh ├── data-dump-loading-tests │ ├── README.md │ ├── data-dump-loading-tests-entrypoint.sh │ ├── import-mysqldump.bats │ ├── sakila-data-dump-load.bats │ └── sakila_dump.sql ├── go-sql-server-driver │ ├── README.md │ ├── auto_gc_test.go │ ├── concurrent_gc_test.go │ ├── gc_oldgen_conjoin_test.go │ ├── gencerts_test.go │ ├── genjwt_test.go │ ├── go.mod │ ├── go.sum │ ├── main_test.go │ ├── metrics_auth_test.go │ ├── push_cleanup_test.go │ ├── sql_server_commit_concurrency_test.go │ ├── sql_server_max_conns_test.go │ ├── sqlserver_info_test.go │ ├── stats_gc_test.go │ ├── testdata │ │ ├── 1pk5col-ints.csv │ │ ├── test_jwks.json │ │ └── test_jwks_private.json │ ├── testdef.go │ ├── tests │ │ ├── README.md │ │ ├── sql-server-cluster-read-only.yaml │ │ ├── sql-server-cluster-tls.yaml │ │ ├── sql-server-cluster-users-and-grants.yaml │ │ ├── sql-server-cluster.yaml │ │ ├── sql-server-config.yaml │ │ ├── sql-server-jwt-auth.yaml │ │ ├── sql-server-orig.yaml │ │ ├── sql-server-remotesapi.yaml │ │ └── sql-server-tls.yaml │ └── valctx_enabled_test.go ├── mysql-client-tests │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile.dockerignore │ ├── README.md │ ├── c │ │ ├── Makefile │ │ ├── mariadb-connector-test.c │ │ ├── mariadb-odbc-test.c │ │ └── mysql-connector-test.c │ ├── cpp │ │ ├── Makefile │ │ ├── mariadb-connector-test.cpp │ │ └── mysql-connector-test.cpp │ ├── dotnet │ │ ├── MySqlClient │ │ │ ├── Program.cs │ │ │ ├── dotnet.csproj │ │ │ └── dotnet.sln │ │ └── MySqlConnector │ │ │ ├── MySqlConnectorTest.csproj │ │ │ ├── MySqlConnectorTest.sln │ │ │ └── Program.cs │ ├── elixir │ │ ├── mysql │ │ │ ├── lib │ │ │ │ ├── mysql_otp │ │ │ │ │ └── application.ex │ │ │ │ └── mysql_otp_test.ex │ │ │ └── mix.exs │ │ └── myxql │ │ │ ├── lib │ │ │ ├── simple.ex │ │ │ └── simple │ │ │ │ └── application.ex │ │ │ └── mix.exs │ ├── go-mysql │ │ ├── go.mod │ │ ├── go.sum │ │ └── mysql-client-test.go │ ├── go │ │ ├── go.mod │ │ ├── go.sum │ │ └── sql-driver-mysql-test.go │ ├── helpers.bash │ ├── java │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ ├── MariaDBConnectorTest.java │ │ │ ├── MariaDBR2DBCTest.java │ │ │ ├── MySQLConnectorTest.java │ │ │ └── MySQLConnectorTest_Collation.java │ ├── mariadb-binlog.bats │ ├── mysql-client-tests-entrypoint.sh │ ├── mysql-client-tests.bats │ ├── node │ │ ├── README.md │ │ ├── concurrency.js │ │ ├── database.js │ │ ├── helpers.js │ │ ├── index.js │ │ ├── knex.js │ │ ├── mariadb-connector.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── run-tests.sh │ │ ├── testdata │ │ │ ├── replace_test_info.psv │ │ │ └── update_test_info.csv │ │ ├── workbench.js │ │ └── workbenchTests │ │ │ ├── branches.js │ │ │ ├── databases.js │ │ │ ├── diffs.js │ │ │ ├── docs.js │ │ │ ├── index.js │ │ │ ├── logs.js │ │ │ ├── matchers.js │ │ │ ├── merge.js │ │ │ ├── table.js │ │ │ ├── tags.js │ │ │ └── views.js │ ├── perl │ │ ├── dbd-mariadb-test.pl │ │ └── dbd-mysql-test.pl │ ├── php │ │ ├── mysqli_connector_test.php │ │ └── pdo_connector_test.php │ ├── python │ │ ├── mariadb-connector-test.py │ │ ├── mysql-connector-test.py │ │ ├── pymysql-test.py │ │ └── sqlalchemy-test.py │ ├── r │ │ ├── rmariadb-test.r │ │ └── rmysql-test.r │ ├── ruby │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── mysql-client-test.rb │ │ └── mysql2-test.rb │ ├── rust │ │ ├── Cargo.toml │ │ ├── rust-toolchain.toml │ │ └── src │ │ │ └── mysql_connector_test.rs │ └── swift │ │ ├── Package.swift │ │ └── Sources │ │ └── main.swift ├── orm-tests │ ├── README.md │ ├── hibernate │ │ ├── DoltHibernateSmokeTest │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── dolt │ │ │ │ │ └── hibernate │ │ │ │ │ ├── Test.java │ │ │ │ │ ├── Util.java │ │ │ │ │ └── model │ │ │ │ │ └── Student.java │ │ │ │ └── resources │ │ │ │ └── hibernate.cfg.xml │ │ └── README.md │ ├── mikro-orm │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── entity │ │ │ │ └── User.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── orm-tests-entrypoint.sh │ ├── orm-tests.bats │ ├── prisma │ │ ├── package.json │ │ ├── prisma │ │ │ └── schema.prisma │ │ └── tsconfig.json │ └── typeorm │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ ├── data-source.ts │ │ ├── entity │ │ │ └── User.ts │ │ └── index.ts │ │ └── tsconfig.json └── transactions │ ├── concurrent_tx_test.go │ ├── go.mod │ └── go.sum └── proto ├── Makefile ├── README.md └── dolt └── services ├── remotesapi └── v1alpha1 │ ├── chunkstore.proto │ └── credentials.proto └── replicationapi └── v1alpha1 └── replication.proto /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/orm-tests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/actions/orm-tests/action.yaml -------------------------------------------------------------------------------- /.github/scripts/fuzzer/run-fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/scripts/fuzzer/run-fuzzer.sh -------------------------------------------------------------------------------- /.github/scripts/merge-perf/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/scripts/merge-perf/data.py -------------------------------------------------------------------------------- /.github/scripts/merge-perf/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/scripts/merge-perf/setup.sh -------------------------------------------------------------------------------- /.github/scripts/sanitize_payload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/scripts/sanitize_payload.sh -------------------------------------------------------------------------------- /.github/scripts/sql-correctness/current_correctness.txt: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/cd-bump-winget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/cd-bump-winget.yaml -------------------------------------------------------------------------------- /.github/workflows/cd-release-pgo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/cd-release-pgo.yaml -------------------------------------------------------------------------------- /.github/workflows/cd-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/cd-release.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-bats-macos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/ci-bats-macos.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-bats-unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/ci-bats-unix.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-check-repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/ci-check-repo.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-go-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/ci-go-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-orm-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/ci-orm-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/email-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/email-report.yaml -------------------------------------------------------------------------------- /.github/workflows/import-perf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/import-perf.yaml -------------------------------------------------------------------------------- /.github/workflows/k8s-fuzzer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/k8s-fuzzer.yaml -------------------------------------------------------------------------------- /.github/workflows/merge-perf-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/merge-perf-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/merge-perf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/merge-perf.yaml -------------------------------------------------------------------------------- /.github/workflows/pull-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/pull-report.yaml -------------------------------------------------------------------------------- /.github/workflows/sysbench-perf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.github/workflows/sysbench-perf.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/serverDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/docker/serverDockerfile -------------------------------------------------------------------------------- /docker/serverREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/docker/serverREADME.md -------------------------------------------------------------------------------- /dolt.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/dolt.plugin.zsh -------------------------------------------------------------------------------- /go/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | -------------------------------------------------------------------------------- /go/Godeps/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/Godeps/LICENSES -------------------------------------------------------------------------------- /go/Godeps/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/Godeps/update.sh -------------------------------------------------------------------------------- /go/Godeps/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/Godeps/verify.sh -------------------------------------------------------------------------------- /go/cmd/dolt/cli/arg_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/arg_helpers.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/arg_parser_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/arg_parser_helpers.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/cli_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/cli_context.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/command.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/command_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/credentials.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/doc.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/flags.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/help.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/help_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/messages.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/query_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/query_helpers.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/stdio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/stdio.go -------------------------------------------------------------------------------- /go/cmd/dolt/cli/stdio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/cli/stdio_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/add.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/admin/admin.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/admin/conjoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/admin/conjoin.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/admin/setref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/admin/setref.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/admin/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/admin/storage.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/admin/zstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/admin/zstd.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/archive.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/assist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/assist.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/backup.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/blame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/blame.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/branch.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/checkout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/checkout.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/cherry-pick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/cherry-pick.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/ci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/ci.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/destroy.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/export.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/import.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/init.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/ls.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/remove.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/run.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ci/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ci/view.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/clean.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/clone.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/clone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/clone_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/cnfcmds/cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/cnfcmds/cat.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/commands_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/commit.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/config.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/config_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/credcmds/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/credcmds/ls.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/credcmds/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/credcmds/new.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/credcmds/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/credcmds/rm.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/credcmds/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/credcmds/use.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/debug.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/diff.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/diff_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/diff_output.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/doc.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/docscmds/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/docscmds/diff.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/docscmds/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/docscmds/docs.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/docscmds/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/docscmds/read.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/dump.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/dump_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/dump_docs.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/engine/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/engine/utils.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/fetch.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/filter-branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/filter-branch.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/fsck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/fsck.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/gc.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/gen_zsh_comp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/gen_zsh_comp.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/indexcmds/cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/indexcmds/cat.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/indexcmds/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/indexcmds/ls.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/init.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/init_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/inspect.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/log.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/log_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/log_graph.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/log_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/login.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/ls.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/merge.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/merge_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/merge_base.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/migrate.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/profile.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/pull.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/push.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/query_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/query_diff.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/read_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/read_tables.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/rebase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/rebase.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/reflog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/reflog.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/remote.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/remote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/remote_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/reset.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/revert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/revert.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/rm.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/roots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/roots.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/schcmds/show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/schcmds/show.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/schcmds/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/schcmds/tags.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/send_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/send_metrics.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/show.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/sql.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/sql_slash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/sql_slash.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/sql_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/sqlserver/mcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/sqlserver/mcp.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/stash.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/status.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/tag.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/tblcmds/cp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/tblcmds/cp.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/tblcmds/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/tblcmds/doc.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/tblcmds/mv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/tblcmds/mv.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/tblcmds/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/tblcmds/rm.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/tblcmds/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/tblcmds/table.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/testdata/signed_commits/db/.dolt/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /go/cmd/dolt/commands/testdata/signed_commits/db/.dolt/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/cmd/dolt/commands/testdata/signed_commits/db/.dolt/stats/.dolt/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /go/cmd/dolt/commands/testdata/signed_commits/db/.dolt/stats/.dolt/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/cmd/dolt/commands/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/utils.go -------------------------------------------------------------------------------- /go/cmd/dolt/commands/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/commands/version.go -------------------------------------------------------------------------------- /go/cmd/dolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/doc.go -------------------------------------------------------------------------------- /go/cmd/dolt/dolt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/dolt.go -------------------------------------------------------------------------------- /go/cmd/dolt/doltcmd/doltcmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/doltcmd/doltcmd.go -------------------------------------------------------------------------------- /go/cmd/dolt/doltversion/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/doltversion/version.go -------------------------------------------------------------------------------- /go/cmd/dolt/errhand/derr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/errhand/derr.go -------------------------------------------------------------------------------- /go/cmd/dolt/errhand/derr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/errhand/derr_test.go -------------------------------------------------------------------------------- /go/cmd/dolt/errhand/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/errhand/doc.go -------------------------------------------------------------------------------- /go/cmd/dolt/errhand/panic_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/errhand/panic_utils.go -------------------------------------------------------------------------------- /go/cmd/dolt/errhand/verr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/errhand/verr.go -------------------------------------------------------------------------------- /go/cmd/dolt/fileno_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/fileno_check.go -------------------------------------------------------------------------------- /go/cmd/dolt/fileno_check_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/fileno_check_darwin.go -------------------------------------------------------------------------------- /go/cmd/dolt/fileno_check_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/fileno_check_linux.go -------------------------------------------------------------------------------- /go/cmd/dolt/system_checks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/cmd/dolt/system_checks.go -------------------------------------------------------------------------------- /go/gen/fb/serial/addressmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/addressmap.go -------------------------------------------------------------------------------- /go/gen/fb/serial/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/blob.go -------------------------------------------------------------------------------- /go/gen/fb/serial/branchcontrol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/branchcontrol.go -------------------------------------------------------------------------------- /go/gen/fb/serial/collation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/collation.go -------------------------------------------------------------------------------- /go/gen/fb/serial/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/commit.go -------------------------------------------------------------------------------- /go/gen/fb/serial/commitclosure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/commitclosure.go -------------------------------------------------------------------------------- /go/gen/fb/serial/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/encoding.go -------------------------------------------------------------------------------- /go/gen/fb/serial/fileidentifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/fileidentifiers.go -------------------------------------------------------------------------------- /go/gen/fb/serial/foreign_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/foreign_key.go -------------------------------------------------------------------------------- /go/gen/fb/serial/mergeartifacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/mergeartifacts.go -------------------------------------------------------------------------------- /go/gen/fb/serial/prolly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/prolly.go -------------------------------------------------------------------------------- /go/gen/fb/serial/rootvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/rootvalue.go -------------------------------------------------------------------------------- /go/gen/fb/serial/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/schema.go -------------------------------------------------------------------------------- /go/gen/fb/serial/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/stash.go -------------------------------------------------------------------------------- /go/gen/fb/serial/stashlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/stashlist.go -------------------------------------------------------------------------------- /go/gen/fb/serial/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/stat.go -------------------------------------------------------------------------------- /go/gen/fb/serial/storeroot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/storeroot.go -------------------------------------------------------------------------------- /go/gen/fb/serial/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/table.go -------------------------------------------------------------------------------- /go/gen/fb/serial/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/tag.go -------------------------------------------------------------------------------- /go/gen/fb/serial/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/tuple.go -------------------------------------------------------------------------------- /go/gen/fb/serial/vectorindexnode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/vectorindexnode.go -------------------------------------------------------------------------------- /go/gen/fb/serial/workingset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/gen/fb/serial/workingset.go -------------------------------------------------------------------------------- /go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/go.mod -------------------------------------------------------------------------------- /go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/go.sum -------------------------------------------------------------------------------- /go/libraries/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doc.go -------------------------------------------------------------------------------- /go/libraries/doltcore/creds/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/creds/creds.go -------------------------------------------------------------------------------- /go/libraries/doltcore/creds/jwk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/creds/jwk.go -------------------------------------------------------------------------------- /go/libraries/doltcore/dbfactory/gs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/dbfactory/gs.go -------------------------------------------------------------------------------- /go/libraries/doltcore/dbfactory/testdata/osscred/empty_oss_cred: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/libraries/doltcore/diff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/diff/diff.go -------------------------------------------------------------------------------- /go/libraries/doltcore/doltdb/AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/doltdb/AGENT.md -------------------------------------------------------------------------------- /go/libraries/doltcore/doltdb/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/doltdb/stash.go -------------------------------------------------------------------------------- /go/libraries/doltcore/doltdb/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/doltdb/table.go -------------------------------------------------------------------------------- /go/libraries/doltcore/doltdb/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/doltdb/tag.go -------------------------------------------------------------------------------- /go/libraries/doltcore/env/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/env/config.go -------------------------------------------------------------------------------- /go/libraries/doltcore/env/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/env/memory.go -------------------------------------------------------------------------------- /go/libraries/doltcore/env/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/env/paths.go -------------------------------------------------------------------------------- /go/libraries/doltcore/env/remotes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/env/remotes.go -------------------------------------------------------------------------------- /go/libraries/doltcore/merge/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/merge/action.go -------------------------------------------------------------------------------- /go/libraries/doltcore/merge/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/merge/merge.go -------------------------------------------------------------------------------- /go/libraries/doltcore/merge/revert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/merge/revert.go -------------------------------------------------------------------------------- /go/libraries/doltcore/merge/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/merge/stash.go -------------------------------------------------------------------------------- /go/libraries/doltcore/ref/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/ref/ref.go -------------------------------------------------------------------------------- /go/libraries/doltcore/ref/ref_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/ref/ref_spec.go -------------------------------------------------------------------------------- /go/libraries/doltcore/ref/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/ref/ref_test.go -------------------------------------------------------------------------------- /go/libraries/doltcore/ref/ref_wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/ref/ref_wrap.go -------------------------------------------------------------------------------- /go/libraries/doltcore/ref/tag_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/ref/tag_ref.go -------------------------------------------------------------------------------- /go/libraries/doltcore/row/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/row/fmt.go -------------------------------------------------------------------------------- /go/libraries/doltcore/row/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/row/fmt_test.go -------------------------------------------------------------------------------- /go/libraries/doltcore/row/noms_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/row/noms_row.go -------------------------------------------------------------------------------- /go/libraries/doltcore/row/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/row/row.go -------------------------------------------------------------------------------- /go/libraries/doltcore/row/row_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/row/row_test.go -------------------------------------------------------------------------------- /go/libraries/doltcore/schema/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/schema/index.go -------------------------------------------------------------------------------- /go/libraries/doltcore/schema/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/schema/tag.go -------------------------------------------------------------------------------- /go/libraries/doltcore/sqle/auto_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/sqle/auto_gc.go -------------------------------------------------------------------------------- /go/libraries/doltcore/sqle/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/sqle/rows.go -------------------------------------------------------------------------------- /go/libraries/doltcore/sqle/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/sqle/tables.go -------------------------------------------------------------------------------- /go/libraries/doltcore/table/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/table/doc.go -------------------------------------------------------------------------------- /go/libraries/doltcore/table/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/doltcore/table/errors.go -------------------------------------------------------------------------------- /go/libraries/events/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/collector.go -------------------------------------------------------------------------------- /go/libraries/events/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/context.go -------------------------------------------------------------------------------- /go/libraries/events/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/emitter.go -------------------------------------------------------------------------------- /go/libraries/events/event_flush.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/event_flush.go -------------------------------------------------------------------------------- /go/libraries/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/events.go -------------------------------------------------------------------------------- /go/libraries/events/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/events_test.go -------------------------------------------------------------------------------- /go/libraries/events/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/metrics.go -------------------------------------------------------------------------------- /go/libraries/events/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/events/metrics_test.go -------------------------------------------------------------------------------- /go/libraries/utils/argparser/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/argparser/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/async/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/async/errgroup.go -------------------------------------------------------------------------------- /go/libraries/utils/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/buffer/buffer.go -------------------------------------------------------------------------------- /go/libraries/utils/circular/buff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/circular/buff.go -------------------------------------------------------------------------------- /go/libraries/utils/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/config/config.go -------------------------------------------------------------------------------- /go/libraries/utils/config/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/config/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/config/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/config/keys.go -------------------------------------------------------------------------------- /go/libraries/utils/earl/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/earl/url.go -------------------------------------------------------------------------------- /go/libraries/utils/earl/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/earl/url_test.go -------------------------------------------------------------------------------- /go/libraries/utils/editor/edit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/editor/edit.go -------------------------------------------------------------------------------- /go/libraries/utils/file/mmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/file/mmap.go -------------------------------------------------------------------------------- /go/libraries/utils/file/open.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/file/open.go -------------------------------------------------------------------------------- /go/libraries/utils/file/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/file/sync.go -------------------------------------------------------------------------------- /go/libraries/utils/filesys/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/filesys/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/filesys/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/filesys/fs.go -------------------------------------------------------------------------------- /go/libraries/utils/filesys/fs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/filesys/fs_test.go -------------------------------------------------------------------------------- /go/libraries/utils/filesys/inmemfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/filesys/inmemfs.go -------------------------------------------------------------------------------- /go/libraries/utils/filesys/localfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/filesys/localfs.go -------------------------------------------------------------------------------- /go/libraries/utils/filesys/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/filesys/lock.go -------------------------------------------------------------------------------- /go/libraries/utils/funcitr/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/funcitr/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/funcitr/funcitr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/funcitr/funcitr.go -------------------------------------------------------------------------------- /go/libraries/utils/gpg/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/gpg/sign.go -------------------------------------------------------------------------------- /go/libraries/utils/gpg/sign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/gpg/sign_test.go -------------------------------------------------------------------------------- /go/libraries/utils/http/requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/http/requests.go -------------------------------------------------------------------------------- /go/libraries/utils/icusmoke/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/icusmoke/icu.go -------------------------------------------------------------------------------- /go/libraries/utils/iohelp/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/iohelp/copy.go -------------------------------------------------------------------------------- /go/libraries/utils/iohelp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/iohelp/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/iohelp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/iohelp/read.go -------------------------------------------------------------------------------- /go/libraries/utils/iohelp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/iohelp/write.go -------------------------------------------------------------------------------- /go/libraries/utils/jwtauth/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/jwtauth/claims.go -------------------------------------------------------------------------------- /go/libraries/utils/jwtauth/jwks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/jwtauth/jwks.go -------------------------------------------------------------------------------- /go/libraries/utils/minver/minver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/minver/minver.go -------------------------------------------------------------------------------- /go/libraries/utils/osutil/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/osutil/shared.go -------------------------------------------------------------------------------- /go/libraries/utils/set/byteset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/set/byteset.go -------------------------------------------------------------------------------- /go/libraries/utils/set/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/set/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/set/strset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/set/strset.go -------------------------------------------------------------------------------- /go/libraries/utils/set/strset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/set/strset_test.go -------------------------------------------------------------------------------- /go/libraries/utils/set/uint64set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/set/uint64set.go -------------------------------------------------------------------------------- /go/libraries/utils/structwalk/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/structwalk/walk.go -------------------------------------------------------------------------------- /go/libraries/utils/svcs/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/svcs/controller.go -------------------------------------------------------------------------------- /go/libraries/utils/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/test/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/test/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/test/files.go -------------------------------------------------------------------------------- /go/libraries/utils/test/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/test/random.go -------------------------------------------------------------------------------- /go/libraries/utils/test/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/test/reader.go -------------------------------------------------------------------------------- /go/libraries/utils/test/test_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/test/test_test.go -------------------------------------------------------------------------------- /go/libraries/utils/valctx/valctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/valctx/valctx.go -------------------------------------------------------------------------------- /go/libraries/utils/valutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/valutil/doc.go -------------------------------------------------------------------------------- /go/libraries/utils/valutil/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/valutil/values.go -------------------------------------------------------------------------------- /go/libraries/utils/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/libraries/utils/version/version.go -------------------------------------------------------------------------------- /go/performance/import_benchmarker/reporting/select_star.sql: -------------------------------------------------------------------------------- 1 | select * from import_perf_results order by 1,2; -------------------------------------------------------------------------------- /go/performance/kvbench/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/kvbench/bench_test.go -------------------------------------------------------------------------------- /go/performance/kvbench/bolt_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/kvbench/bolt_store.go -------------------------------------------------------------------------------- /go/performance/kvbench/mem_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/kvbench/mem_store.go -------------------------------------------------------------------------------- /go/performance/kvbench/nbs_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/kvbench/nbs_store.go -------------------------------------------------------------------------------- /go/performance/replicationbench/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.pdf 3 | -------------------------------------------------------------------------------- /go/performance/scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/scripts/.gitignore -------------------------------------------------------------------------------- /go/performance/scripts/local_tpcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/scripts/local_tpcc.sh -------------------------------------------------------------------------------- /go/performance/scripts/mysql_tpcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/scripts/mysql_tpcc.sh -------------------------------------------------------------------------------- /go/performance/serverbench/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *.pdf 3 | -------------------------------------------------------------------------------- /go/performance/sysbench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/sysbench/README.md -------------------------------------------------------------------------------- /go/performance/sysbench/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/sysbench/cmd/main.go -------------------------------------------------------------------------------- /go/performance/sysbench/testdef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/performance/sysbench/testdef.go -------------------------------------------------------------------------------- /go/serial/addressmap.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/addressmap.fbs -------------------------------------------------------------------------------- /go/serial/blob.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/blob.fbs -------------------------------------------------------------------------------- /go/serial/branchcontrol.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/branchcontrol.fbs -------------------------------------------------------------------------------- /go/serial/collation.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/collation.fbs -------------------------------------------------------------------------------- /go/serial/commit.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/commit.fbs -------------------------------------------------------------------------------- /go/serial/commitclosure.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/commitclosure.fbs -------------------------------------------------------------------------------- /go/serial/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/copyright.txt -------------------------------------------------------------------------------- /go/serial/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/doc.go -------------------------------------------------------------------------------- /go/serial/encoding.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/encoding.fbs -------------------------------------------------------------------------------- /go/serial/fileidentifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/fileidentifiers.go -------------------------------------------------------------------------------- /go/serial/foreign_key.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/foreign_key.fbs -------------------------------------------------------------------------------- /go/serial/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/generate.sh -------------------------------------------------------------------------------- /go/serial/mergeartifacts.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/mergeartifacts.fbs -------------------------------------------------------------------------------- /go/serial/prolly.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/prolly.fbs -------------------------------------------------------------------------------- /go/serial/rootvalue.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/rootvalue.fbs -------------------------------------------------------------------------------- /go/serial/schema.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/schema.fbs -------------------------------------------------------------------------------- /go/serial/stash.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/stash.fbs -------------------------------------------------------------------------------- /go/serial/stashlist.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/stashlist.fbs -------------------------------------------------------------------------------- /go/serial/stat.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/stat.fbs -------------------------------------------------------------------------------- /go/serial/storeroot.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/storeroot.fbs -------------------------------------------------------------------------------- /go/serial/table.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/table.fbs -------------------------------------------------------------------------------- /go/serial/tag.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/tag.fbs -------------------------------------------------------------------------------- /go/serial/tuple.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/tuple.fbs -------------------------------------------------------------------------------- /go/serial/vectorindexnode.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/vectorindexnode.fbs -------------------------------------------------------------------------------- /go/serial/workingset.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/serial/workingset.fbs -------------------------------------------------------------------------------- /go/store/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/.gitignore -------------------------------------------------------------------------------- /go/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/README.md -------------------------------------------------------------------------------- /go/store/atomicerr/atomic_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/atomicerr/atomic_error.go -------------------------------------------------------------------------------- /go/store/blobstore/blobstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/blobstore.go -------------------------------------------------------------------------------- /go/store/blobstore/blobstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/blobstore_test.go -------------------------------------------------------------------------------- /go/store/blobstore/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/errors.go -------------------------------------------------------------------------------- /go/store/blobstore/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/gcs.go -------------------------------------------------------------------------------- /go/store/blobstore/inmem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/inmem.go -------------------------------------------------------------------------------- /go/store/blobstore/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/local.go -------------------------------------------------------------------------------- /go/store/blobstore/oci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/oci.go -------------------------------------------------------------------------------- /go/store/blobstore/oci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/oci_test.go -------------------------------------------------------------------------------- /go/store/blobstore/oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/oss.go -------------------------------------------------------------------------------- /go/store/blobstore/oss_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/oss_test.go -------------------------------------------------------------------------------- /go/store/blobstore/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/blobstore/range.go -------------------------------------------------------------------------------- /go/store/chunks/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/chunk.go -------------------------------------------------------------------------------- /go/store/chunks/chunk_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/chunk_store.go -------------------------------------------------------------------------------- /go/store/chunks/chunk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/chunk_test.go -------------------------------------------------------------------------------- /go/store/chunks/cs_metrics_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/cs_metrics_wrapper.go -------------------------------------------------------------------------------- /go/store/chunks/memory_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/memory_store.go -------------------------------------------------------------------------------- /go/store/chunks/memory_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/memory_store_test.go -------------------------------------------------------------------------------- /go/store/chunks/tablefilestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/tablefilestore.go -------------------------------------------------------------------------------- /go/store/chunks/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/chunks/test_utils.go -------------------------------------------------------------------------------- /go/store/cmd/noms/.gitignore: -------------------------------------------------------------------------------- 1 | noms -------------------------------------------------------------------------------- /go/store/cmd/noms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/README.md -------------------------------------------------------------------------------- /go/store/cmd/noms/commit_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/commit_iterator.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_blob.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_blob_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_blob_get.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_blob_put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_blob_put.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_cat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_cat.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_config.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_ds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_ds.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_ds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_ds_test.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_manifest.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_root.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_root_test.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_show.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_show_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_show_test.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_stats.go -------------------------------------------------------------------------------- /go/store/cmd/noms/noms_walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/noms_walk.go -------------------------------------------------------------------------------- /go/store/cmd/noms/splunk.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/splunk.pl -------------------------------------------------------------------------------- /go/store/cmd/noms/util/check_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/util/check_error.go -------------------------------------------------------------------------------- /go/store/cmd/noms/util/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/util/command.go -------------------------------------------------------------------------------- /go/store/cmd/noms/util/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/cmd/noms/util/help.go -------------------------------------------------------------------------------- /go/store/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/config/config.go -------------------------------------------------------------------------------- /go/store/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/config/config_test.go -------------------------------------------------------------------------------- /go/store/config/resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/config/resolver.go -------------------------------------------------------------------------------- /go/store/config/resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/config/resolver_test.go -------------------------------------------------------------------------------- /go/store/constants/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/constants/version.go -------------------------------------------------------------------------------- /go/store/d/try.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/d/try.go -------------------------------------------------------------------------------- /go/store/d/try_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/d/try_test.go -------------------------------------------------------------------------------- /go/store/datas/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/commit.go -------------------------------------------------------------------------------- /go/store/datas/commit_closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/commit_closure.go -------------------------------------------------------------------------------- /go/store/datas/commit_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/commit_meta.go -------------------------------------------------------------------------------- /go/store/datas/commit_meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/commit_meta_test.go -------------------------------------------------------------------------------- /go/store/datas/commit_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/commit_options.go -------------------------------------------------------------------------------- /go/store/datas/commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/commit_test.go -------------------------------------------------------------------------------- /go/store/datas/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/database.go -------------------------------------------------------------------------------- /go/store/datas/database_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/database_common.go -------------------------------------------------------------------------------- /go/store/datas/database_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/database_test.go -------------------------------------------------------------------------------- /go/store/datas/dataset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/dataset.go -------------------------------------------------------------------------------- /go/store/datas/dataset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/dataset_test.go -------------------------------------------------------------------------------- /go/store/datas/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/doc.go -------------------------------------------------------------------------------- /go/store/datas/fun_commit_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/fun_commit_hash.go -------------------------------------------------------------------------------- /go/store/datas/garbage_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/garbage_collection.go -------------------------------------------------------------------------------- /go/store/datas/pull/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/pull/clone.go -------------------------------------------------------------------------------- /go/store/datas/pull/puller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/pull/puller.go -------------------------------------------------------------------------------- /go/store/datas/pull/puller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/pull/puller_test.go -------------------------------------------------------------------------------- /go/store/datas/pull/pulling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/pull/pulling.md -------------------------------------------------------------------------------- /go/store/datas/ref_closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/ref_closure.go -------------------------------------------------------------------------------- /go/store/datas/refmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/refmap.go -------------------------------------------------------------------------------- /go/store/datas/stash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/stash.go -------------------------------------------------------------------------------- /go/store/datas/stashlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/stashlist.go -------------------------------------------------------------------------------- /go/store/datas/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/statistics.go -------------------------------------------------------------------------------- /go/store/datas/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/tag.go -------------------------------------------------------------------------------- /go/store/datas/tag_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/tag_meta.go -------------------------------------------------------------------------------- /go/store/datas/tag_meta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/tag_meta_test.go -------------------------------------------------------------------------------- /go/store/datas/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/tag_test.go -------------------------------------------------------------------------------- /go/store/datas/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/tuple.go -------------------------------------------------------------------------------- /go/store/datas/workingset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/datas/workingset.go -------------------------------------------------------------------------------- /go/store/diff/apply_patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/diff/apply_patch.go -------------------------------------------------------------------------------- /go/store/diff/apply_patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/diff/apply_patch_test.go -------------------------------------------------------------------------------- /go/store/diff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/diff/diff.go -------------------------------------------------------------------------------- /go/store/diff/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/diff/diff_test.go -------------------------------------------------------------------------------- /go/store/diff/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/diff/patch.go -------------------------------------------------------------------------------- /go/store/diff/patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/diff/patch_test.go -------------------------------------------------------------------------------- /go/store/diff/print_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/diff/print_diff.go -------------------------------------------------------------------------------- /go/store/hash/base32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/hash/base32.go -------------------------------------------------------------------------------- /go/store/hash/base32_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/hash/base32_test.go -------------------------------------------------------------------------------- /go/store/hash/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/hash/hash.go -------------------------------------------------------------------------------- /go/store/hash/hash_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/hash/hash_slice.go -------------------------------------------------------------------------------- /go/store/hash/hash_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/hash/hash_slice_test.go -------------------------------------------------------------------------------- /go/store/hash/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/hash/hash_test.go -------------------------------------------------------------------------------- /go/store/marshal/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/marshal/decode.go -------------------------------------------------------------------------------- /go/store/marshal/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/marshal/decode_test.go -------------------------------------------------------------------------------- /go/store/marshal/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/marshal/encode.go -------------------------------------------------------------------------------- /go/store/marshal/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/marshal/encode_test.go -------------------------------------------------------------------------------- /go/store/marshal/encode_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/marshal/encode_type.go -------------------------------------------------------------------------------- /go/store/marshal/encode_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/marshal/encode_type_test.go -------------------------------------------------------------------------------- /go/store/merge/candidate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/merge/candidate.go -------------------------------------------------------------------------------- /go/store/merge/three_way.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/merge/three_way.go -------------------------------------------------------------------------------- /go/store/merge/three_way_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/merge/three_way_list.go -------------------------------------------------------------------------------- /go/store/merge/three_way_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/merge/three_way_list_test.go -------------------------------------------------------------------------------- /go/store/merge/three_way_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/merge/three_way_set_test.go -------------------------------------------------------------------------------- /go/store/merge/three_way_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/merge/three_way_test.go -------------------------------------------------------------------------------- /go/store/metrics/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/metrics/histogram.go -------------------------------------------------------------------------------- /go/store/metrics/histogram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/metrics/histogram_test.go -------------------------------------------------------------------------------- /go/store/nbs/NBS-on-AWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/NBS-on-AWS.md -------------------------------------------------------------------------------- /go/store/nbs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/README.md -------------------------------------------------------------------------------- /go/store/nbs/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive.go -------------------------------------------------------------------------------- /go/store/nbs/archive_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_build.go -------------------------------------------------------------------------------- /go/store/nbs/archive_chunk_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_chunk_source.go -------------------------------------------------------------------------------- /go/store/nbs/archive_chunker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_chunker.go -------------------------------------------------------------------------------- /go/store/nbs/archive_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_inspect.go -------------------------------------------------------------------------------- /go/store/nbs/archive_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_reader.go -------------------------------------------------------------------------------- /go/store/nbs/archive_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_reader_test.go -------------------------------------------------------------------------------- /go/store/nbs/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_test.go -------------------------------------------------------------------------------- /go/store/nbs/archive_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_writer.go -------------------------------------------------------------------------------- /go/store/nbs/archive_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/archive_writer_test.go -------------------------------------------------------------------------------- /go/store/nbs/aws_table_persister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/aws_table_persister.go -------------------------------------------------------------------------------- /go/store/nbs/benchmarks/.gitignore: -------------------------------------------------------------------------------- 1 | benchmarks 2 | -------------------------------------------------------------------------------- /go/store/nbs/benchmarks/chunker/.gitignore: -------------------------------------------------------------------------------- 1 | chunker 2 | -------------------------------------------------------------------------------- /go/store/nbs/benchmarks/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/benchmarks/gen/gen.go -------------------------------------------------------------------------------- /go/store/nbs/benchmarks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/benchmarks/main.go -------------------------------------------------------------------------------- /go/store/nbs/block_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/block_store_test.go -------------------------------------------------------------------------------- /go/store/nbs/bs_manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/bs_manifest.go -------------------------------------------------------------------------------- /go/store/nbs/bs_persister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/bs_persister.go -------------------------------------------------------------------------------- /go/store/nbs/byte_sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/byte_sink.go -------------------------------------------------------------------------------- /go/store/nbs/byte_sink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/byte_sink_test.go -------------------------------------------------------------------------------- /go/store/nbs/chunk_fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/chunk_fetcher.go -------------------------------------------------------------------------------- /go/store/nbs/chunk_source_adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/chunk_source_adapter.go -------------------------------------------------------------------------------- /go/store/nbs/conjoiner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/conjoiner.go -------------------------------------------------------------------------------- /go/store/nbs/conjoiner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/conjoiner_test.go -------------------------------------------------------------------------------- /go/store/nbs/dynamo_fake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/dynamo_fake_test.go -------------------------------------------------------------------------------- /go/store/nbs/dynamo_manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/dynamo_manifest.go -------------------------------------------------------------------------------- /go/store/nbs/dynamo_manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/dynamo_manifest_test.go -------------------------------------------------------------------------------- /go/store/nbs/empty_chunk_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/empty_chunk_source.go -------------------------------------------------------------------------------- /go/store/nbs/file_manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/file_manifest.go -------------------------------------------------------------------------------- /go/store/nbs/file_manifest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/file_manifest_test.go -------------------------------------------------------------------------------- /go/store/nbs/file_table_persister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/file_table_persister.go -------------------------------------------------------------------------------- /go/store/nbs/file_table_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/file_table_reader.go -------------------------------------------------------------------------------- /go/store/nbs/frag/.gitignore: -------------------------------------------------------------------------------- 1 | frag 2 | -------------------------------------------------------------------------------- /go/store/nbs/frag/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/frag/main.go -------------------------------------------------------------------------------- /go/store/nbs/gc_copier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/gc_copier.go -------------------------------------------------------------------------------- /go/store/nbs/ghost_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/ghost_store.go -------------------------------------------------------------------------------- /go/store/nbs/ghost_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/ghost_store_test.go -------------------------------------------------------------------------------- /go/store/nbs/index_transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/index_transformer.go -------------------------------------------------------------------------------- /go/store/nbs/journal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal.go -------------------------------------------------------------------------------- /go/store/nbs/journal_chunk_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_chunk_source.go -------------------------------------------------------------------------------- /go/store/nbs/journal_index_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_index_record.go -------------------------------------------------------------------------------- /go/store/nbs/journal_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_inspect.go -------------------------------------------------------------------------------- /go/store/nbs/journal_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_inspect_test.go -------------------------------------------------------------------------------- /go/store/nbs/journal_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_record.go -------------------------------------------------------------------------------- /go/store/nbs/journal_record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_record_test.go -------------------------------------------------------------------------------- /go/store/nbs/journal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_test.go -------------------------------------------------------------------------------- /go/store/nbs/journal_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_writer.go -------------------------------------------------------------------------------- /go/store/nbs/journal_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/journal_writer_test.go -------------------------------------------------------------------------------- /go/store/nbs/manifest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/manifest.go -------------------------------------------------------------------------------- /go/store/nbs/manifest_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/manifest_cache.go -------------------------------------------------------------------------------- /go/store/nbs/manifest_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/manifest_cache_test.go -------------------------------------------------------------------------------- /go/store/nbs/mem_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/mem_table.go -------------------------------------------------------------------------------- /go/store/nbs/mem_table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/mem_table_test.go -------------------------------------------------------------------------------- /go/store/nbs/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/metadata.go -------------------------------------------------------------------------------- /go/store/nbs/mmap_index_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/mmap_index_reader.go -------------------------------------------------------------------------------- /go/store/nbs/must_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/must_test.go -------------------------------------------------------------------------------- /go/store/nbs/nbs_metrics_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/nbs_metrics_wrapper.go -------------------------------------------------------------------------------- /go/store/nbs/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/quota.go -------------------------------------------------------------------------------- /go/store/nbs/race_off.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/race_off.go -------------------------------------------------------------------------------- /go/store/nbs/race_on.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/race_on.go -------------------------------------------------------------------------------- /go/store/nbs/reflog_ring_buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/reflog_ring_buffer.go -------------------------------------------------------------------------------- /go/store/nbs/root_tracker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/root_tracker_test.go -------------------------------------------------------------------------------- /go/store/nbs/s3_fake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/s3_fake_test.go -------------------------------------------------------------------------------- /go/store/nbs/s3_object_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/s3_object_reader.go -------------------------------------------------------------------------------- /go/store/nbs/s3_object_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/s3_object_reader_test.go -------------------------------------------------------------------------------- /go/store/nbs/s3_table_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/s3_table_reader.go -------------------------------------------------------------------------------- /go/store/nbs/s3_table_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/s3_table_reader_test.go -------------------------------------------------------------------------------- /go/store/nbs/sizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/sizes.go -------------------------------------------------------------------------------- /go/store/nbs/sizes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/sizes_test.go -------------------------------------------------------------------------------- /go/store/nbs/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/stats.go -------------------------------------------------------------------------------- /go/store/nbs/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/stats_test.go -------------------------------------------------------------------------------- /go/store/nbs/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/store.go -------------------------------------------------------------------------------- /go/store/nbs/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/store_test.go -------------------------------------------------------------------------------- /go/store/nbs/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table.go -------------------------------------------------------------------------------- /go/store/nbs/table_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_index.go -------------------------------------------------------------------------------- /go/store/nbs/table_index_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_index_test.go -------------------------------------------------------------------------------- /go/store/nbs/table_persister.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_persister.go -------------------------------------------------------------------------------- /go/store/nbs/table_persister_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_persister_test.go -------------------------------------------------------------------------------- /go/store/nbs/table_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_reader.go -------------------------------------------------------------------------------- /go/store/nbs/table_reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_reader_test.go -------------------------------------------------------------------------------- /go/store/nbs/table_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_set.go -------------------------------------------------------------------------------- /go/store/nbs/table_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_set_test.go -------------------------------------------------------------------------------- /go/store/nbs/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_test.go -------------------------------------------------------------------------------- /go/store/nbs/table_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/table_writer.go -------------------------------------------------------------------------------- /go/store/nbs/test/manifest_clobber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/test/manifest_clobber.go -------------------------------------------------------------------------------- /go/store/nbs/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nbs/util.go -------------------------------------------------------------------------------- /go/store/nomdl/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nomdl/lexer.go -------------------------------------------------------------------------------- /go/store/nomdl/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nomdl/parser.go -------------------------------------------------------------------------------- /go/store/nomdl/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/nomdl/parser_test.go -------------------------------------------------------------------------------- /go/store/perf/codec-perf-rig/.gitignore: -------------------------------------------------------------------------------- 1 | codec-perf-rig 2 | -------------------------------------------------------------------------------- /go/store/perf/codec-perf-rig/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/perf/codec-perf-rig/main.go -------------------------------------------------------------------------------- /go/store/perf/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/perf/suite/suite.go -------------------------------------------------------------------------------- /go/store/perf/suite/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/perf/suite/suite_test.go -------------------------------------------------------------------------------- /go/store/pool/buffer_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/pool/buffer_pool.go -------------------------------------------------------------------------------- /go/store/prolly/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | 3 | -------------------------------------------------------------------------------- /go/store/prolly/address_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/address_map.go -------------------------------------------------------------------------------- /go/store/prolly/address_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/address_map_test.go -------------------------------------------------------------------------------- /go/store/prolly/artifact_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/artifact_map.go -------------------------------------------------------------------------------- /go/store/prolly/artifact_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/artifact_map_test.go -------------------------------------------------------------------------------- /go/store/prolly/benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/benchmark/.gitignore -------------------------------------------------------------------------------- /go/store/prolly/commit_closure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/commit_closure.go -------------------------------------------------------------------------------- /go/store/prolly/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/doc.go -------------------------------------------------------------------------------- /go/store/prolly/map_diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/map_diff_test.go -------------------------------------------------------------------------------- /go/store/prolly/map_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/map_interface.go -------------------------------------------------------------------------------- /go/store/prolly/map_merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/map_merge_test.go -------------------------------------------------------------------------------- /go/store/prolly/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/map_test.go -------------------------------------------------------------------------------- /go/store/prolly/message/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/message/blob.go -------------------------------------------------------------------------------- /go/store/prolly/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/message/message.go -------------------------------------------------------------------------------- /go/store/prolly/message/prolly_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/message/prolly_map.go -------------------------------------------------------------------------------- /go/store/prolly/message/serialize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/message/serialize.go -------------------------------------------------------------------------------- /go/store/prolly/message/varint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/message/varint.go -------------------------------------------------------------------------------- /go/store/prolly/proximity_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/proximity_map.go -------------------------------------------------------------------------------- /go/store/prolly/proximity_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/proximity_map_test.go -------------------------------------------------------------------------------- /go/store/prolly/shim/shim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/shim/shim.go -------------------------------------------------------------------------------- /go/store/prolly/sort/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/sort/external.go -------------------------------------------------------------------------------- /go/store/prolly/sort/external_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/sort/external_test.go -------------------------------------------------------------------------------- /go/store/prolly/tree/addr_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/addr_diff.go -------------------------------------------------------------------------------- /go/store/prolly/tree/blob_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/blob_builder.go -------------------------------------------------------------------------------- /go/store/prolly/tree/chunker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/chunker.go -------------------------------------------------------------------------------- /go/store/prolly/tree/chunker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/chunker_test.go -------------------------------------------------------------------------------- /go/store/prolly/tree/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/diff.go -------------------------------------------------------------------------------- /go/store/prolly/tree/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/diff_test.go -------------------------------------------------------------------------------- /go/store/prolly/tree/diffop_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/diffop_string.go -------------------------------------------------------------------------------- /go/store/prolly/tree/json_chunker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/json_chunker.go -------------------------------------------------------------------------------- /go/store/prolly/tree/json_cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/json_cursor.go -------------------------------------------------------------------------------- /go/store/prolly/tree/json_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/json_diff.go -------------------------------------------------------------------------------- /go/store/prolly/tree/json_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/json_location.go -------------------------------------------------------------------------------- /go/store/prolly/tree/json_scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/json_scanner.go -------------------------------------------------------------------------------- /go/store/prolly/tree/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/map.go -------------------------------------------------------------------------------- /go/store/prolly/tree/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/merge.go -------------------------------------------------------------------------------- /go/store/prolly/tree/mutable_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/mutable_map.go -------------------------------------------------------------------------------- /go/store/prolly/tree/mutator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/mutator.go -------------------------------------------------------------------------------- /go/store/prolly/tree/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/node.go -------------------------------------------------------------------------------- /go/store/prolly/tree/node_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/node_builder.go -------------------------------------------------------------------------------- /go/store/prolly/tree/node_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/node_cache.go -------------------------------------------------------------------------------- /go/store/prolly/tree/node_cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/node_cursor.go -------------------------------------------------------------------------------- /go/store/prolly/tree/node_splitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/node_splitter.go -------------------------------------------------------------------------------- /go/store/prolly/tree/node_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/node_store.go -------------------------------------------------------------------------------- /go/store/prolly/tree/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/node_test.go -------------------------------------------------------------------------------- /go/store/prolly/tree/patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/patch_test.go -------------------------------------------------------------------------------- /go/store/prolly/tree/prolly_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/prolly_fields.go -------------------------------------------------------------------------------- /go/store/prolly/tree/proximity_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/proximity_map.go -------------------------------------------------------------------------------- /go/store/prolly/tree/samples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/samples_test.go -------------------------------------------------------------------------------- /go/store/prolly/tree/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/stats.go -------------------------------------------------------------------------------- /go/store/prolly/tree/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/stats_test.go -------------------------------------------------------------------------------- /go/store/prolly/tree/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/testutils.go -------------------------------------------------------------------------------- /go/store/prolly/tree/tree_patcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/tree_patcher.go -------------------------------------------------------------------------------- /go/store/prolly/tree/z_encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tree/z_encoding.go -------------------------------------------------------------------------------- /go/store/prolly/tuple_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tuple_map.go -------------------------------------------------------------------------------- /go/store/prolly/tuple_mutable_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tuple_mutable_map.go -------------------------------------------------------------------------------- /go/store/prolly/tuple_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tuple_range.go -------------------------------------------------------------------------------- /go/store/prolly/tuple_range_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tuple_range_iter.go -------------------------------------------------------------------------------- /go/store/prolly/tuple_range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/tuple_range_test.go -------------------------------------------------------------------------------- /go/store/prolly/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/prolly/utils_test.go -------------------------------------------------------------------------------- /go/store/skip/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/skip/list.go -------------------------------------------------------------------------------- /go/store/skip/list_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/skip/list_bench_test.go -------------------------------------------------------------------------------- /go/store/skip/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/skip/list_test.go -------------------------------------------------------------------------------- /go/store/sloppy/sloppy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/sloppy/sloppy.go -------------------------------------------------------------------------------- /go/store/sloppy/sloppy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/sloppy/sloppy_test.go -------------------------------------------------------------------------------- /go/store/spec/absolute_path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/spec/absolute_path.go -------------------------------------------------------------------------------- /go/store/spec/absolute_path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/spec/absolute_path_test.go -------------------------------------------------------------------------------- /go/store/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/spec/spec.go -------------------------------------------------------------------------------- /go/store/spec/spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/spec/spec_test.go -------------------------------------------------------------------------------- /go/store/spec/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/spec/util.go -------------------------------------------------------------------------------- /go/store/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/store_test.go -------------------------------------------------------------------------------- /go/store/types/apply_map_edits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/apply_map_edits.go -------------------------------------------------------------------------------- /go/store/types/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/blob.go -------------------------------------------------------------------------------- /go/store/types/blob_leaf_sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/blob_leaf_sequence.go -------------------------------------------------------------------------------- /go/store/types/blob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/blob_test.go -------------------------------------------------------------------------------- /go/store/types/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/bool.go -------------------------------------------------------------------------------- /go/store/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/codec.go -------------------------------------------------------------------------------- /go/store/types/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/codec_test.go -------------------------------------------------------------------------------- /go/store/types/collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/collection.go -------------------------------------------------------------------------------- /go/store/types/collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/collection_test.go -------------------------------------------------------------------------------- /go/store/types/common_supertype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/common_supertype.go -------------------------------------------------------------------------------- /go/store/types/compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/compare_test.go -------------------------------------------------------------------------------- /go/store/types/decimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/decimal.go -------------------------------------------------------------------------------- /go/store/types/decimal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/decimal_test.go -------------------------------------------------------------------------------- /go/store/types/edit_distance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/edit_distance.go -------------------------------------------------------------------------------- /go/store/types/edit_distance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/edit_distance_test.go -------------------------------------------------------------------------------- /go/store/types/edits/disk_backed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/edits/disk_backed.go -------------------------------------------------------------------------------- /go/store/types/edits/kvp_coll_itr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/edits/kvp_coll_itr.go -------------------------------------------------------------------------------- /go/store/types/edits/kvp_itr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/edits/kvp_itr_test.go -------------------------------------------------------------------------------- /go/store/types/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/encoding_test.go -------------------------------------------------------------------------------- /go/store/types/equals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/equals_test.go -------------------------------------------------------------------------------- /go/store/types/extended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/extended.go -------------------------------------------------------------------------------- /go/store/types/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/float.go -------------------------------------------------------------------------------- /go/store/types/float_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/float_util.go -------------------------------------------------------------------------------- /go/store/types/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/format.go -------------------------------------------------------------------------------- /go/store/types/geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/geometry.go -------------------------------------------------------------------------------- /go/store/types/geometry_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/geometry_collection.go -------------------------------------------------------------------------------- /go/store/types/get_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/get_hash.go -------------------------------------------------------------------------------- /go/store/types/incremental_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/incremental_test.go -------------------------------------------------------------------------------- /go/store/types/indexed_sequences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/indexed_sequences.go -------------------------------------------------------------------------------- /go/store/types/inlineblob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/inlineblob.go -------------------------------------------------------------------------------- /go/store/types/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/int.go -------------------------------------------------------------------------------- /go/store/types/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/json.go -------------------------------------------------------------------------------- /go/store/types/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/json_test.go -------------------------------------------------------------------------------- /go/store/types/kvp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/kvp.go -------------------------------------------------------------------------------- /go/store/types/leaf_sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/leaf_sequence.go -------------------------------------------------------------------------------- /go/store/types/less.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/less.go -------------------------------------------------------------------------------- /go/store/types/linestring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/linestring.go -------------------------------------------------------------------------------- /go/store/types/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/list.go -------------------------------------------------------------------------------- /go/store/types/list_editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/list_editor.go -------------------------------------------------------------------------------- /go/store/types/list_editor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/list_editor_test.go -------------------------------------------------------------------------------- /go/store/types/list_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/list_iterator.go -------------------------------------------------------------------------------- /go/store/types/list_iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/list_iterator_test.go -------------------------------------------------------------------------------- /go/store/types/list_leaf_sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/list_leaf_sequence.go -------------------------------------------------------------------------------- /go/store/types/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/list_test.go -------------------------------------------------------------------------------- /go/store/types/make_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/make_type.go -------------------------------------------------------------------------------- /go/store/types/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/map.go -------------------------------------------------------------------------------- /go/store/types/map_editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/map_editor.go -------------------------------------------------------------------------------- /go/store/types/map_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/map_iterator.go -------------------------------------------------------------------------------- /go/store/types/map_iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/map_iterator_test.go -------------------------------------------------------------------------------- /go/store/types/map_leaf_sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/map_leaf_sequence.go -------------------------------------------------------------------------------- /go/store/types/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/map_test.go -------------------------------------------------------------------------------- /go/store/types/meta_sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/meta_sequence.go -------------------------------------------------------------------------------- /go/store/types/multilinestring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/multilinestring.go -------------------------------------------------------------------------------- /go/store/types/multipoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/multipoint.go -------------------------------------------------------------------------------- /go/store/types/multipolygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/multipolygon.go -------------------------------------------------------------------------------- /go/store/types/must_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/must_test.go -------------------------------------------------------------------------------- /go/store/types/noms_kind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/noms_kind.go -------------------------------------------------------------------------------- /go/store/types/noms_kind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/noms_kind_test.go -------------------------------------------------------------------------------- /go/store/types/null_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/null_value.go -------------------------------------------------------------------------------- /go/store/types/ordered_sequences.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/ordered_sequences.go -------------------------------------------------------------------------------- /go/store/types/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/path.go -------------------------------------------------------------------------------- /go/store/types/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/path_test.go -------------------------------------------------------------------------------- /go/store/types/perf/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/perf/dummy.go -------------------------------------------------------------------------------- /go/store/types/perf/perf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/perf/perf_test.go -------------------------------------------------------------------------------- /go/store/types/point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/point.go -------------------------------------------------------------------------------- /go/store/types/polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/polygon.go -------------------------------------------------------------------------------- /go/store/types/primitives_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/primitives_test.go -------------------------------------------------------------------------------- /go/store/types/read_geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/read_geometry.go -------------------------------------------------------------------------------- /go/store/types/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/ref.go -------------------------------------------------------------------------------- /go/store/types/ref_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/ref_test.go -------------------------------------------------------------------------------- /go/store/types/sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/sequence.go -------------------------------------------------------------------------------- /go/store/types/sequence_chunker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/sequence_chunker.go -------------------------------------------------------------------------------- /go/store/types/sequence_concat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/sequence_concat.go -------------------------------------------------------------------------------- /go/store/types/sequence_cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/sequence_cursor.go -------------------------------------------------------------------------------- /go/store/types/serial_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/serial_message.go -------------------------------------------------------------------------------- /go/store/types/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/set.go -------------------------------------------------------------------------------- /go/store/types/set_editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/set_editor.go -------------------------------------------------------------------------------- /go/store/types/set_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/set_iterator.go -------------------------------------------------------------------------------- /go/store/types/set_iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/set_iterator_test.go -------------------------------------------------------------------------------- /go/store/types/set_leaf_sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/set_leaf_sequence.go -------------------------------------------------------------------------------- /go/store/types/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/set_test.go -------------------------------------------------------------------------------- /go/store/types/simplify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/simplify.go -------------------------------------------------------------------------------- /go/store/types/simplify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/simplify_test.go -------------------------------------------------------------------------------- /go/store/types/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/sort.go -------------------------------------------------------------------------------- /go/store/types/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/string.go -------------------------------------------------------------------------------- /go/store/types/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/string_test.go -------------------------------------------------------------------------------- /go/store/types/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/struct.go -------------------------------------------------------------------------------- /go/store/types/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/struct_test.go -------------------------------------------------------------------------------- /go/store/types/subtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/subtype.go -------------------------------------------------------------------------------- /go/store/types/subtype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/subtype_test.go -------------------------------------------------------------------------------- /go/store/types/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/timestamp.go -------------------------------------------------------------------------------- /go/store/types/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/tuple.go -------------------------------------------------------------------------------- /go/store/types/tuple_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/tuple_stream.go -------------------------------------------------------------------------------- /go/store/types/tuple_stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/tuple_stream_test.go -------------------------------------------------------------------------------- /go/store/types/tuple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/tuple_test.go -------------------------------------------------------------------------------- /go/store/types/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/type.go -------------------------------------------------------------------------------- /go/store/types/type_desc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/type_desc.go -------------------------------------------------------------------------------- /go/store/types/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/type_test.go -------------------------------------------------------------------------------- /go/store/types/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/uint.go -------------------------------------------------------------------------------- /go/store/types/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/util_test.go -------------------------------------------------------------------------------- /go/store/types/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/uuid.go -------------------------------------------------------------------------------- /go/store/types/validate_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/validate_type.go -------------------------------------------------------------------------------- /go/store/types/validating_decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/validating_decoder.go -------------------------------------------------------------------------------- /go/store/types/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/value.go -------------------------------------------------------------------------------- /go/store/types/value_decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/value_decoder.go -------------------------------------------------------------------------------- /go/store/types/value_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/value_stats.go -------------------------------------------------------------------------------- /go/store/types/value_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/value_store.go -------------------------------------------------------------------------------- /go/store/types/value_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/value_store_test.go -------------------------------------------------------------------------------- /go/store/types/walk_refs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/walk_refs.go -------------------------------------------------------------------------------- /go/store/types/walk_refs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/walk_refs_test.go -------------------------------------------------------------------------------- /go/store/types/write_geometry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/types/write_geometry.go -------------------------------------------------------------------------------- /go/store/util/datetime/date_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/datetime/date_time.go -------------------------------------------------------------------------------- /go/store/util/exit/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/exit/exit.go -------------------------------------------------------------------------------- /go/store/util/functions/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/functions/all.go -------------------------------------------------------------------------------- /go/store/util/functions/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/functions/all_test.go -------------------------------------------------------------------------------- /go/store/util/profile/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/profile/profile.go -------------------------------------------------------------------------------- /go/store/util/random/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/random/id.go -------------------------------------------------------------------------------- /go/store/util/random/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/random/id_test.go -------------------------------------------------------------------------------- /go/store/util/sizecache/size_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/sizecache/size_cache.go -------------------------------------------------------------------------------- /go/store/util/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/status/status.go -------------------------------------------------------------------------------- /go/store/util/tempfiles/temp_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/tempfiles/temp_files.go -------------------------------------------------------------------------------- /go/store/util/verbose/verbose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/verbose/verbose.go -------------------------------------------------------------------------------- /go/store/util/verbose/verbose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/verbose/verbose_test.go -------------------------------------------------------------------------------- /go/store/util/writers/writers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/util/writers/writers_test.go -------------------------------------------------------------------------------- /go/store/val/adaptive_value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/adaptive_value.go -------------------------------------------------------------------------------- /go/store/val/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/codec.go -------------------------------------------------------------------------------- /go/store/val/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/codec_test.go -------------------------------------------------------------------------------- /go/store/val/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/doc.go -------------------------------------------------------------------------------- /go/store/val/extended_comparator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/extended_comparator.go -------------------------------------------------------------------------------- /go/store/val/keyless_tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/keyless_tuple.go -------------------------------------------------------------------------------- /go/store/val/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/prefix.go -------------------------------------------------------------------------------- /go/store/val/triple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/triple.go -------------------------------------------------------------------------------- /go/store/val/triple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/triple_test.go -------------------------------------------------------------------------------- /go/store/val/tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/tuple.go -------------------------------------------------------------------------------- /go/store/val/tuple_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/tuple_builder.go -------------------------------------------------------------------------------- /go/store/val/tuple_builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/tuple_builder_test.go -------------------------------------------------------------------------------- /go/store/val/tuple_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/tuple_compare.go -------------------------------------------------------------------------------- /go/store/val/tuple_descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/tuple_descriptor.go -------------------------------------------------------------------------------- /go/store/val/tuple_descriptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/tuple_descriptor_test.go -------------------------------------------------------------------------------- /go/store/val/tuple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/tuple_test.go -------------------------------------------------------------------------------- /go/store/val/value_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/val/value_store.go -------------------------------------------------------------------------------- /go/store/valuefile/value_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/valuefile/value_file.go -------------------------------------------------------------------------------- /go/store/valuefile/value_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/store/valuefile/value_file_test.go -------------------------------------------------------------------------------- /go/utils/3pdeps/ICU4C_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/3pdeps/ICU4C_LICENSE -------------------------------------------------------------------------------- /go/utils/3pdeps/MIMALLOC_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/3pdeps/MIMALLOC_LICENSE -------------------------------------------------------------------------------- /go/utils/3pdeps/MUSL_COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/3pdeps/MUSL_COPYRIGHT -------------------------------------------------------------------------------- /go/utils/3pdeps/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/3pdeps/main.go -------------------------------------------------------------------------------- /go/utils/batsee/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/batsee/README.md -------------------------------------------------------------------------------- /go/utils/batsee/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/batsee/main.go -------------------------------------------------------------------------------- /go/utils/concurrency/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/concurrency/runner.go -------------------------------------------------------------------------------- /go/utils/copyrightshdrs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/copyrightshdrs/main.go -------------------------------------------------------------------------------- /go/utils/devbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/devbuild/README.md -------------------------------------------------------------------------------- /go/utils/devbuild/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/devbuild/build.sh -------------------------------------------------------------------------------- /go/utils/genminver_validation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/genminver_validation/main.go -------------------------------------------------------------------------------- /go/utils/hasher/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/hasher/main.go -------------------------------------------------------------------------------- /go/utils/hasher/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/hasher/main_test.go -------------------------------------------------------------------------------- /go/utils/prepr/prepr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/prepr/prepr.sh -------------------------------------------------------------------------------- /go/utils/publishrelease/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/publishrelease/install.sh -------------------------------------------------------------------------------- /go/utils/remotesrv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/remotesrv/README.md -------------------------------------------------------------------------------- /go/utils/remotesrv/cscache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/remotesrv/cscache.go -------------------------------------------------------------------------------- /go/utils/remotesrv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/remotesrv/main.go -------------------------------------------------------------------------------- /go/utils/repofmt/check_bats_fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/repofmt/check_bats_fmt.sh -------------------------------------------------------------------------------- /go/utils/repofmt/check_fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/repofmt/check_fmt.sh -------------------------------------------------------------------------------- /go/utils/repofmt/format_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/repofmt/format_repo.sh -------------------------------------------------------------------------------- /go/utils/rpmbuild/BUILD/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /go/utils/rpmbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/rpmbuild/README.md -------------------------------------------------------------------------------- /go/utils/rpmbuild/RPMS/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /go/utils/rpmbuild/SOURCES/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /go/utils/rpmbuild/SPECS/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go/utils/rpmbuild/SPECS/dolt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/go/utils/rpmbuild/SPECS/dolt.spec -------------------------------------------------------------------------------- /go/utils/rpmbuild/SRPMS/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /images/Dolt-Logo@3x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/images/Dolt-Logo@3x.svg -------------------------------------------------------------------------------- /images/getting-started-tp-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/images/getting-started-tp-connect.png -------------------------------------------------------------------------------- /images/getting-started-tp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/images/getting-started-tp.png -------------------------------------------------------------------------------- /integration-tests/ORMDockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/ORMDockerfile -------------------------------------------------------------------------------- /integration-tests/bats/.gitignore: -------------------------------------------------------------------------------- 1 | helper/__pycache__ 2 | -------------------------------------------------------------------------------- /integration-tests/bats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/README.md -------------------------------------------------------------------------------- /integration-tests/bats/add-patch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/add-patch.bats -------------------------------------------------------------------------------- /integration-tests/bats/add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/add.bats -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/base/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/base/noms/oldgen/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/large_clone/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/large_clone/noms/oldgen/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/small_clone/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/small_clone/noms/oldgen/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/v1/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/v1/noms/oldgen/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/v2/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive-test-repos/v2/noms/oldgen/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/archive.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/archive.bats -------------------------------------------------------------------------------- /integration-tests/bats/backup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/backup.bats -------------------------------------------------------------------------------- /integration-tests/bats/bats.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/bats.bats -------------------------------------------------------------------------------- /integration-tests/bats/bats.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/bats.sql -------------------------------------------------------------------------------- /integration-tests/bats/blame.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/blame.bats -------------------------------------------------------------------------------- /integration-tests/bats/branch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/branch.bats -------------------------------------------------------------------------------- /integration-tests/bats/certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/certs/ca.pem -------------------------------------------------------------------------------- /integration-tests/bats/checkout.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/checkout.bats -------------------------------------------------------------------------------- /integration-tests/bats/ci.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/ci.bats -------------------------------------------------------------------------------- /integration-tests/bats/commit.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/commit.bats -------------------------------------------------------------------------------- /integration-tests/bats/config.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/config.bats -------------------------------------------------------------------------------- /integration-tests/bats/copy-tags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/copy-tags.bats -------------------------------------------------------------------------------- /integration-tests/bats/corrupt_dbs/bad_commit/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/corrupt_dbs/bad_commit/noms/oldgen/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/corrupt_dbs/bad_journal_crc/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/corrupt_dbs/bad_journal_crc_2/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/cp-and-mv.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/cp-and-mv.bats -------------------------------------------------------------------------------- /integration-tests/bats/creds.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/creds.bats -------------------------------------------------------------------------------- /integration-tests/bats/debug.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/debug.bats -------------------------------------------------------------------------------- /integration-tests/bats/diff-stat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/diff-stat.bats -------------------------------------------------------------------------------- /integration-tests/bats/diff.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/diff.bats -------------------------------------------------------------------------------- /integration-tests/bats/diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/diff.json -------------------------------------------------------------------------------- /integration-tests/bats/docs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/docs.bats -------------------------------------------------------------------------------- /integration-tests/bats/doltpy.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/doltpy.bats -------------------------------------------------------------------------------- /integration-tests/bats/dump-docs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/dump-docs.bats -------------------------------------------------------------------------------- /integration-tests/bats/dump.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/dump.bats -------------------------------------------------------------------------------- /integration-tests/bats/events.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/events.bats -------------------------------------------------------------------------------- /integration-tests/bats/fetch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/fetch.bats -------------------------------------------------------------------------------- /integration-tests/bats/fsck.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/fsck.bats -------------------------------------------------------------------------------- /integration-tests/bats/fulltext.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/fulltext.bats -------------------------------------------------------------------------------- /integration-tests/bats/gen_vals.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/gen_vals.awk -------------------------------------------------------------------------------- /integration-tests/bats/helper/bad.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/helper/bad.xlsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/helper/old_dolt_schemas/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/helper/old_dolt_schemas/noms/oldgen/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/helper/old_old_dolt_schemas/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/helper/parquet/strings.sql: -------------------------------------------------------------------------------- 1 | create table strings(`text` varbinary(50) primary key); -------------------------------------------------------------------------------- /integration-tests/bats/helper/queries/1pksupportedtypes/delete.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM test WHERE pk=1; -------------------------------------------------------------------------------- /integration-tests/bats/helper/queries/2pk5col-ints/delete.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM test WHERE pk1=1 AND pk2=0 ; -------------------------------------------------------------------------------- /integration-tests/bats/helper/sql-reserved-column-name.csv: -------------------------------------------------------------------------------- 1 | Timestamp,and,or,select 2 | 1,1.1,aaa,create 3 | 2,2.2,bbb,update -------------------------------------------------------------------------------- /integration-tests/bats/helper/states.csv: -------------------------------------------------------------------------------- 1 | state,population 2 | Delaware,59096 3 | -------------------------------------------------------------------------------- /integration-tests/bats/helper/with_utf8_bom.sql: -------------------------------------------------------------------------------- 1 | create table t1 (pk int primary key); 2 | -------------------------------------------------------------------------------- /integration-tests/bats/ignore.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/ignore.bats -------------------------------------------------------------------------------- /integration-tests/bats/index.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/index.bats -------------------------------------------------------------------------------- /integration-tests/bats/init.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/init.bats -------------------------------------------------------------------------------- /integration-tests/bats/json-diff.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/json-diff.bats -------------------------------------------------------------------------------- /integration-tests/bats/json-oldformat-repo/.dolt/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integration-tests/bats/json-oldformat-repo/.dolt/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/json-oldformat-repo/.dolt/stats/.dolt/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integration-tests/bats/json-oldformat-repo/.dolt/stats/.dolt/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/json.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/json.bats -------------------------------------------------------------------------------- /integration-tests/bats/keyless.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/keyless.bats -------------------------------------------------------------------------------- /integration-tests/bats/log.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/log.bats -------------------------------------------------------------------------------- /integration-tests/bats/log.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/log.expect -------------------------------------------------------------------------------- /integration-tests/bats/ls.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/ls.bats -------------------------------------------------------------------------------- /integration-tests/bats/merge.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/merge.bats -------------------------------------------------------------------------------- /integration-tests/bats/migrate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/migrate.bats -------------------------------------------------------------------------------- /integration-tests/bats/multidb.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/multidb.bats -------------------------------------------------------------------------------- /integration-tests/bats/mysql.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/mysql.db -------------------------------------------------------------------------------- /integration-tests/bats/no-repo.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/no-repo.bats -------------------------------------------------------------------------------- /integration-tests/bats/nonlocal.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/nonlocal.bats -------------------------------------------------------------------------------- /integration-tests/bats/pager.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/pager.bats -------------------------------------------------------------------------------- /integration-tests/bats/pager.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/pager.expect -------------------------------------------------------------------------------- /integration-tests/bats/performance-repo/.dolt/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integration-tests/bats/performance-repo/.dolt/noms/LOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/bats/private.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/private.pgp -------------------------------------------------------------------------------- /integration-tests/bats/privs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/privs.json -------------------------------------------------------------------------------- /integration-tests/bats/profile.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/profile.bats -------------------------------------------------------------------------------- /integration-tests/bats/pull.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/pull.bats -------------------------------------------------------------------------------- /integration-tests/bats/push.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/push.bats -------------------------------------------------------------------------------- /integration-tests/bats/rebase.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/rebase.bats -------------------------------------------------------------------------------- /integration-tests/bats/reflog.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/reflog.bats -------------------------------------------------------------------------------- /integration-tests/bats/remotes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/remotes.bats -------------------------------------------------------------------------------- /integration-tests/bats/remotesrv.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/remotesrv.bats -------------------------------------------------------------------------------- /integration-tests/bats/replace.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/replace.bats -------------------------------------------------------------------------------- /integration-tests/bats/reset.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/reset.bats -------------------------------------------------------------------------------- /integration-tests/bats/revert.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/revert.bats -------------------------------------------------------------------------------- /integration-tests/bats/rm.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/rm.bats -------------------------------------------------------------------------------- /integration-tests/bats/show.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/show.bats -------------------------------------------------------------------------------- /integration-tests/bats/signed.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/signed.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-add.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-add.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-batch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-batch.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-clean.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-clean.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-diff.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-diff.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-fetch.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-fetch.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-merge.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-merge.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-privs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-privs.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-pull.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-pull.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-push.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-push.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-reset.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-reset.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-shell.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-shell.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-show.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-show.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-stash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-stash.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-tags.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-tags.bats -------------------------------------------------------------------------------- /integration-tests/bats/sql-use.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql-use.expect -------------------------------------------------------------------------------- /integration-tests/bats/sql.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/sql.bats -------------------------------------------------------------------------------- /integration-tests/bats/stash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/stash.bats -------------------------------------------------------------------------------- /integration-tests/bats/stats.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/stats.bats -------------------------------------------------------------------------------- /integration-tests/bats/status.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/status.bats -------------------------------------------------------------------------------- /integration-tests/bats/tableplus.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/tableplus.bats -------------------------------------------------------------------------------- /integration-tests/bats/triggers.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/triggers.bats -------------------------------------------------------------------------------- /integration-tests/bats/types.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/types.bats -------------------------------------------------------------------------------- /integration-tests/bats/undrop.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/undrop.bats -------------------------------------------------------------------------------- /integration-tests/bats/window.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/window.bats -------------------------------------------------------------------------------- /integration-tests/bats/zstd.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/bats/zstd.bats -------------------------------------------------------------------------------- /integration-tests/compatibility/test_files/forward_compatible_versions.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration-tests/mysql-client-tests/rust/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "stable" 3 | -------------------------------------------------------------------------------- /integration-tests/orm-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/orm-tests/README.md -------------------------------------------------------------------------------- /integration-tests/transactions/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/transactions/go.mod -------------------------------------------------------------------------------- /integration-tests/transactions/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/integration-tests/transactions/go.sum -------------------------------------------------------------------------------- /proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/proto/Makefile -------------------------------------------------------------------------------- /proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolthub/dolt/HEAD/proto/README.md --------------------------------------------------------------------------------