├── .cargo └── config.toml ├── .clang-format ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── bench.yaml │ ├── ci.yaml │ ├── docs.yaml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── archive ├── README.md ├── catalogs.md ├── hybrid.md ├── notes.md ├── old_repo_readme.md ├── query-graph.md └── sql.md ├── bench ├── README.md ├── clickbench │ ├── partitioned │ │ ├── q00.bench │ │ ├── q01.bench │ │ ├── q02.bench │ │ ├── q03.bench │ │ ├── q04.bench │ │ ├── q05.bench │ │ ├── q06.bench │ │ ├── q07.bench │ │ ├── q08.bench │ │ ├── q09.bench │ │ ├── q10.bench │ │ ├── q11.bench │ │ ├── q12.bench │ │ ├── q13.bench │ │ ├── q14.bench │ │ ├── q15.bench │ │ ├── q16.bench │ │ ├── q17.bench │ │ ├── q18.bench │ │ ├── q19.bench │ │ ├── q20.bench │ │ ├── q21.bench │ │ ├── q22.bench │ │ ├── q23.bench │ │ ├── q24.bench │ │ ├── q25.bench │ │ ├── q26.bench │ │ ├── q27.bench │ │ ├── q28.bench │ │ ├── q29.bench │ │ ├── q30.bench │ │ ├── q31.bench │ │ ├── q32.bench │ │ ├── q33.bench │ │ ├── q34.bench │ │ ├── q35.bench │ │ ├── q36.bench │ │ ├── q37.bench │ │ ├── q38.bench │ │ ├── q39.bench │ │ ├── q40.bench │ │ ├── q41.bench │ │ └── q42.bench │ └── single │ │ ├── q00.bench │ │ ├── q01.bench │ │ ├── q02.bench │ │ ├── q03.bench │ │ ├── q04.bench │ │ ├── q05.bench │ │ ├── q06.bench │ │ ├── q07.bench │ │ ├── q08.bench │ │ ├── q09.bench │ │ ├── q10.bench │ │ ├── q11.bench │ │ ├── q12.bench │ │ ├── q13.bench │ │ ├── q14.bench │ │ ├── q15.bench │ │ ├── q16.bench │ │ ├── q17.bench │ │ ├── q18.bench │ │ ├── q19.bench │ │ ├── q20.bench │ │ ├── q21.bench │ │ ├── q22.bench │ │ ├── q23.bench │ │ ├── q24.bench │ │ ├── q25.bench │ │ ├── q26.bench │ │ ├── q27.bench │ │ ├── q28.bench │ │ ├── q29.bench │ │ ├── q30.bench │ │ ├── q31.bench │ │ ├── q32.bench │ │ ├── q33.bench │ │ ├── q34.bench │ │ ├── q35.bench │ │ ├── q36.bench │ │ ├── q37.bench │ │ ├── q38.bench │ │ ├── q39.bench │ │ ├── q40.bench │ │ ├── q41.bench │ │ └── q42.bench ├── micro │ ├── aggregates │ │ ├── corr_10M_points.bench │ │ ├── many_distinct_values.bench │ │ ├── many_int_groups_1M.bench │ │ ├── many_med_string_groups_1M.bench │ │ ├── many_small_string_groups_1M.bench │ │ └── redundant_group_by_exprs_64.bench │ ├── case │ │ └── large_case_statement.bench │ ├── functions │ │ ├── like_small_search.bench │ │ └── trim_large_inputs_small_patterns.bench │ ├── limit │ │ └── limit_early_stop.bench │ ├── many_base_relation_join_10.bench │ ├── many_base_relation_join_14.bench │ ├── many_base_relation_join_8.bench │ ├── min_max_generate_series_10M.bench │ ├── select │ │ ├── select_from_many_columns.bench │ │ ├── select_from_many_regex_columns.bench │ │ └── star_expand_many_cols.bench │ └── select_1.bench └── tpch │ ├── 1 │ ├── q01.bench │ ├── q02.bench │ ├── q03.bench │ ├── q04.bench │ ├── q05.bench │ ├── q06.bench │ ├── q07.bench │ ├── q08.bench │ ├── q09.bench │ ├── q10.bench │ ├── q11.bench │ ├── q12.bench │ ├── q13.bench │ ├── q14.bench │ ├── q15.bench │ ├── q16.bench │ ├── q17.bench │ ├── q18.bench │ ├── q19.bench │ ├── q20.bench │ ├── q21.bench │ └── q22.bench │ ├── 10 │ ├── q01.bench │ ├── q02.bench │ ├── q03.bench │ ├── q04.bench │ ├── q05.bench │ ├── q06.bench │ ├── q07.bench │ ├── q08.bench │ ├── q09.bench │ ├── q10.bench │ ├── q11.bench │ ├── q12.bench │ ├── q13.bench │ ├── q14.bench │ ├── q15.bench │ ├── q16.bench │ ├── q17.bench │ ├── q18.bench │ ├── q19.bench │ ├── q20.bench │ ├── q21.bench │ └── q22.bench │ ├── 50 │ ├── q01.bench │ ├── q02.bench │ ├── q03.bench │ ├── q04.bench │ ├── q05.bench │ ├── q06.bench │ ├── q07.bench │ ├── q08.bench │ ├── q09.bench │ ├── q10.bench │ ├── q11.bench │ ├── q12.bench │ ├── q13.bench │ ├── q14.bench │ ├── q15.bench │ ├── q16.bench │ ├── q17.bench │ ├── q18.bench │ ├── q19.bench │ ├── q20.bench │ ├── q21.bench │ └── q22.bench │ └── 100 │ ├── q01.bench │ ├── q02.bench │ ├── q03.bench │ ├── q04.bench │ ├── q05.bench │ ├── q06.bench │ ├── q07.bench │ ├── q08.bench │ ├── q09.bench │ ├── q10.bench │ ├── q11.bench │ ├── q12.bench │ ├── q13.bench │ ├── q14.bench │ ├── q15.bench │ ├── q16.bench │ ├── q17.bench │ ├── q18.bench │ ├── q19.bench │ ├── q20.bench │ ├── q21.bench │ └── q22.bench ├── bench_bin ├── Cargo.toml └── bench_runner.rs ├── crates ├── docgen │ ├── Cargo.toml │ └── src │ │ ├── file.rs │ │ ├── main.rs │ │ ├── markdown_table.rs │ │ ├── section.rs │ │ └── session.rs ├── glaredb │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── glaredb_bench │ ├── Cargo.toml │ └── src │ │ ├── benchmark.rs │ │ ├── lib.rs │ │ ├── pagecache.rs │ │ └── runner.rs ├── glaredb_core │ ├── Cargo.toml │ └── src │ │ ├── arrays │ │ ├── array │ │ │ ├── array_buffer.rs │ │ │ ├── execution_format.rs │ │ │ ├── float.rs │ │ │ ├── mod.rs │ │ │ ├── physical_type.rs │ │ │ ├── selection.rs │ │ │ └── validity.rs │ │ ├── batch.rs │ │ ├── bitmap │ │ │ ├── mod.rs │ │ │ └── view.rs │ │ ├── cache.rs │ │ ├── collection │ │ │ ├── chunk.rs │ │ │ ├── concurrent.rs │ │ │ ├── equal.rs │ │ │ ├── mod.rs │ │ │ └── segment.rs │ │ ├── compute │ │ │ ├── copy.rs │ │ │ ├── date.rs │ │ │ ├── hash.rs │ │ │ ├── list_extract.rs │ │ │ ├── make_list.rs │ │ │ ├── mod.rs │ │ │ └── set_list_value.rs │ │ ├── datatype.rs │ │ ├── executor │ │ │ ├── aggregate │ │ │ │ ├── binary.rs │ │ │ │ ├── mod.rs │ │ │ │ └── unary.rs │ │ │ ├── mod.rs │ │ │ └── scalar │ │ │ │ ├── binary.rs │ │ │ │ ├── list.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── ternary.rs │ │ │ │ ├── unary.rs │ │ │ │ └── uniform.rs │ │ ├── field.rs │ │ ├── format │ │ │ ├── mod.rs │ │ │ ├── pretty │ │ │ │ ├── components.rs │ │ │ │ ├── display.rs │ │ │ │ ├── mod.rs │ │ │ │ └── table.rs │ │ │ └── ugly.rs │ │ ├── mod.rs │ │ ├── row │ │ │ ├── aggregate_collection.rs │ │ │ ├── aggregate_layout.rs │ │ │ ├── block.rs │ │ │ ├── block_scan.rs │ │ │ ├── mod.rs │ │ │ ├── row_blocks.rs │ │ │ ├── row_collection.rs │ │ │ ├── row_layout.rs │ │ │ ├── row_matcher.rs │ │ │ └── row_scan.rs │ │ ├── scalar │ │ │ ├── decimal.rs │ │ │ ├── interval.rs │ │ │ ├── mod.rs │ │ │ ├── timestamp.rs │ │ │ └── unwrap.rs │ │ ├── sort │ │ │ ├── binary_merge.rs │ │ │ ├── heap_compare.rs │ │ │ ├── key_encode.rs │ │ │ ├── mod.rs │ │ │ ├── partial_sort.rs │ │ │ ├── sort_layout.rs │ │ │ ├── sorted_block.rs │ │ │ └── sorted_segment.rs │ │ └── string.rs │ │ ├── buffer │ │ ├── buffer_manager.rs │ │ ├── db_vec.rs │ │ └── mod.rs │ │ ├── catalog │ │ ├── context.rs │ │ ├── create.rs │ │ ├── database.rs │ │ ├── drop.rs │ │ ├── entry.rs │ │ ├── memory.rs │ │ ├── mod.rs │ │ ├── profile.rs │ │ └── system.rs │ │ ├── config │ │ ├── execution.rs │ │ ├── mod.rs │ │ └── session.rs │ │ ├── engine │ │ ├── mod.rs │ │ ├── query_result.rs │ │ ├── session.rs │ │ └── single_user.rs │ │ ├── execution │ │ ├── execution_stack.rs │ │ ├── mod.rs │ │ ├── operators │ │ │ ├── catalog │ │ │ │ ├── create_schema.rs │ │ │ │ ├── create_table.rs │ │ │ │ ├── create_table_as.rs │ │ │ │ ├── create_view.rs │ │ │ │ ├── drop.rs │ │ │ │ ├── insert.rs │ │ │ │ └── mod.rs │ │ │ ├── filter.rs │ │ │ ├── hash_aggregate │ │ │ │ ├── distinct_aggregates.rs │ │ │ │ ├── grouping_value.rs │ │ │ │ ├── hash_table │ │ │ │ │ ├── base.rs │ │ │ │ │ ├── directory.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── partitioned.rs │ │ │ │ └── mod.rs │ │ │ ├── hash_join │ │ │ │ ├── hash_table │ │ │ │ │ ├── directory.rs │ │ │ │ │ ├── drain.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── scan.rs │ │ │ │ └── mod.rs │ │ │ ├── limit.rs │ │ │ ├── materialize.rs │ │ │ ├── mod.rs │ │ │ ├── nested_loop_join │ │ │ │ ├── cross_product.rs │ │ │ │ ├── match_tracker.rs │ │ │ │ └── mod.rs │ │ │ ├── no_rows.rs │ │ │ ├── project.rs │ │ │ ├── results │ │ │ │ ├── materialized.rs │ │ │ │ ├── mod.rs │ │ │ │ └── streaming.rs │ │ │ ├── scan.rs │ │ │ ├── single_row.rs │ │ │ ├── sort │ │ │ │ ├── global_sort.rs │ │ │ │ ├── merge_queue.rs │ │ │ │ └── mod.rs │ │ │ ├── table_execute.rs │ │ │ ├── ungrouped_aggregate.rs │ │ │ ├── union.rs │ │ │ ├── util │ │ │ │ ├── delayed_count.rs │ │ │ │ ├── mod.rs │ │ │ │ └── partition_wakers.rs │ │ │ └── values.rs │ │ ├── partition_pipeline.rs │ │ ├── pipeline.rs │ │ └── planner │ │ │ ├── mod.rs │ │ │ ├── plan_aggregate.rs │ │ │ ├── plan_create_schema.rs │ │ │ ├── plan_create_table.rs │ │ │ ├── plan_create_view.rs │ │ │ ├── plan_describe.rs │ │ │ ├── plan_distinct.rs │ │ │ ├── plan_drop.rs │ │ │ ├── plan_explain.rs │ │ │ ├── plan_expression_list.rs │ │ │ ├── plan_filter.rs │ │ │ ├── plan_insert.rs │ │ │ ├── plan_join.rs │ │ │ ├── plan_limit.rs │ │ │ ├── plan_magic_scan.rs │ │ │ ├── plan_materialize_scan.rs │ │ │ ├── plan_no_rows.rs │ │ │ ├── plan_project.rs │ │ │ ├── plan_scan.rs │ │ │ ├── plan_set_operation.rs │ │ │ ├── plan_show_var.rs │ │ │ ├── plan_single_row.rs │ │ │ ├── plan_sort.rs │ │ │ ├── plan_table_execute.rs │ │ │ └── plan_unnest.rs │ │ ├── explain │ │ ├── context_display.rs │ │ ├── explainable.rs │ │ ├── formatter.rs │ │ ├── mod.rs │ │ └── node.rs │ │ ├── expr │ │ ├── aggregate_expr.rs │ │ ├── arith_expr.rs │ │ ├── between_expr.rs │ │ ├── case_expr.rs │ │ ├── cast_expr.rs │ │ ├── column_expr.rs │ │ ├── comparison_expr.rs │ │ ├── conjunction_expr.rs │ │ ├── grouping_set_expr.rs │ │ ├── is_expr.rs │ │ ├── literal_expr.rs │ │ ├── mod.rs │ │ ├── negate_expr.rs │ │ ├── physical │ │ │ ├── case_expr.rs │ │ │ ├── cast_expr.rs │ │ │ ├── column_expr.rs │ │ │ ├── conjunction_expr.rs │ │ │ ├── evaluator.rs │ │ │ ├── literal_expr.rs │ │ │ ├── mod.rs │ │ │ ├── planner.rs │ │ │ ├── scalar_function_expr.rs │ │ │ └── selection_evaluator.rs │ │ ├── scalar_function_expr.rs │ │ ├── subquery_expr.rs │ │ ├── unnest_expr.rs │ │ └── window_expr.rs │ │ ├── extension │ │ └── mod.rs │ │ ├── functions │ │ ├── aggregate │ │ │ ├── builtin │ │ │ │ ├── approx_count_distinct.rs │ │ │ │ ├── approx_quantile.rs │ │ │ │ ├── avg.rs │ │ │ │ ├── bit_and.rs │ │ │ │ ├── bit_or.rs │ │ │ │ ├── bool_and.rs │ │ │ │ ├── bool_or.rs │ │ │ │ ├── corr.rs │ │ │ │ ├── count.rs │ │ │ │ ├── covar.rs │ │ │ │ ├── first.rs │ │ │ │ ├── minmax.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── regr_avg.rs │ │ │ │ ├── regr_count.rs │ │ │ │ ├── regr_r2.rs │ │ │ │ ├── regr_slope.rs │ │ │ │ ├── stddev.rs │ │ │ │ ├── string_agg.rs │ │ │ │ └── sum.rs │ │ │ ├── mod.rs │ │ │ └── simple.rs │ │ ├── bind_state.rs │ │ ├── candidate.rs │ │ ├── cast │ │ │ ├── behavior.rs │ │ │ ├── builtin │ │ │ │ ├── mod.rs │ │ │ │ ├── to_binary.rs │ │ │ │ ├── to_boolean.rs │ │ │ │ ├── to_date.rs │ │ │ │ ├── to_decimal.rs │ │ │ │ ├── to_interval.rs │ │ │ │ ├── to_primitive.rs │ │ │ │ └── to_string.rs │ │ │ ├── format.rs │ │ │ ├── mod.rs │ │ │ └── parse.rs │ │ ├── documentation.rs │ │ ├── function_set.rs │ │ ├── implicit.rs │ │ ├── mod.rs │ │ ├── scalar │ │ │ ├── builtin │ │ │ │ ├── arith │ │ │ │ │ ├── add.rs │ │ │ │ │ ├── decimal_arith.rs │ │ │ │ │ ├── decimal_sigs.rs │ │ │ │ │ ├── div.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── mul.rs │ │ │ │ │ ├── rem.rs │ │ │ │ │ └── sub.rs │ │ │ │ ├── binary │ │ │ │ │ ├── bitand.rs │ │ │ │ │ ├── bitnot.rs │ │ │ │ │ ├── bitor.rs │ │ │ │ │ ├── hex.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── shl.rs │ │ │ │ │ ├── shr.rs │ │ │ │ │ └── xor.rs │ │ │ │ ├── boolean.rs │ │ │ │ ├── comparison.rs │ │ │ │ ├── datetime │ │ │ │ │ ├── date_part.rs │ │ │ │ │ ├── date_trunc.rs │ │ │ │ │ ├── epoch.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── debug.rs │ │ │ │ ├── is.rs │ │ │ │ ├── list │ │ │ │ │ ├── list_extract.rs │ │ │ │ │ ├── list_value.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── negate.rs │ │ │ │ ├── not_implemented.rs │ │ │ │ ├── numeric │ │ │ │ │ ├── abs.rs │ │ │ │ │ ├── acos.rs │ │ │ │ │ ├── acosh.rs │ │ │ │ │ ├── asin.rs │ │ │ │ │ ├── asinh.rs │ │ │ │ │ ├── atan.rs │ │ │ │ │ ├── atan2.rs │ │ │ │ │ ├── atanh.rs │ │ │ │ │ ├── cbrt.rs │ │ │ │ │ ├── ceil.rs │ │ │ │ │ ├── cos.rs │ │ │ │ │ ├── cosh.rs │ │ │ │ │ ├── cot.rs │ │ │ │ │ ├── degrees.rs │ │ │ │ │ ├── exp.rs │ │ │ │ │ ├── factorial.rs │ │ │ │ │ ├── floor.rs │ │ │ │ │ ├── gcd.rs │ │ │ │ │ ├── isfinite.rs │ │ │ │ │ ├── isinf.rs │ │ │ │ │ ├── isnan.rs │ │ │ │ │ ├── lcm.rs │ │ │ │ │ ├── ln.rs │ │ │ │ │ ├── log.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── pi.rs │ │ │ │ │ ├── power.rs │ │ │ │ │ ├── radians.rs │ │ │ │ │ ├── round.rs │ │ │ │ │ ├── sign.rs │ │ │ │ │ ├── sin.rs │ │ │ │ │ ├── sinh.rs │ │ │ │ │ ├── sqrt.rs │ │ │ │ │ ├── tan.rs │ │ │ │ │ ├── tanh.rs │ │ │ │ │ └── trunc.rs │ │ │ │ ├── random.rs │ │ │ │ ├── similarity │ │ │ │ │ ├── l2_distance.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── string │ │ │ │ │ ├── ascii.rs │ │ │ │ │ ├── case.rs │ │ │ │ │ ├── concat.rs │ │ │ │ │ ├── contains.rs │ │ │ │ │ ├── ends_with.rs │ │ │ │ │ ├── initcap.rs │ │ │ │ │ ├── left.rs │ │ │ │ │ ├── length.rs │ │ │ │ │ ├── like.rs │ │ │ │ │ ├── md5.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── pad.rs │ │ │ │ │ ├── regexp_count.rs │ │ │ │ │ ├── regexp_instr.rs │ │ │ │ │ ├── regexp_like.rs │ │ │ │ │ ├── regexp_replace.rs │ │ │ │ │ ├── repeat.rs │ │ │ │ │ ├── replace.rs │ │ │ │ │ ├── reverse.rs │ │ │ │ │ ├── right.rs │ │ │ │ │ ├── split_part.rs │ │ │ │ │ ├── starts_with.rs │ │ │ │ │ ├── strpos.rs │ │ │ │ │ ├── substring.rs │ │ │ │ │ ├── translate.rs │ │ │ │ │ └── trim.rs │ │ │ │ └── struct_funcs.rs │ │ │ └── mod.rs │ │ └── table │ │ │ ├── builtin │ │ │ ├── glob.rs │ │ │ ├── list_databases.rs │ │ │ ├── list_entries.rs │ │ │ ├── list_schemas.rs │ │ │ ├── memory_scan.rs │ │ │ ├── mod.rs │ │ │ ├── profile.rs │ │ │ ├── read_text.rs │ │ │ ├── series.rs │ │ │ └── unnest.rs │ │ │ ├── execute.rs │ │ │ ├── mod.rs │ │ │ └── scan.rs │ │ ├── lib.rs │ │ ├── logical │ │ ├── binder │ │ │ ├── bind_attach.rs │ │ │ ├── bind_context.rs │ │ │ ├── bind_copy.rs │ │ │ ├── bind_create_schema.rs │ │ │ ├── bind_create_table.rs │ │ │ ├── bind_create_view.rs │ │ │ ├── bind_describe.rs │ │ │ ├── bind_discard.rs │ │ │ ├── bind_drop.rs │ │ │ ├── bind_explain.rs │ │ │ ├── bind_insert.rs │ │ │ ├── bind_query │ │ │ │ ├── bind_from.rs │ │ │ │ ├── bind_group_by.rs │ │ │ │ ├── bind_having.rs │ │ │ │ ├── bind_modifier.rs │ │ │ │ ├── bind_select.rs │ │ │ │ ├── bind_select_list.rs │ │ │ │ ├── bind_setop.rs │ │ │ │ ├── bind_values.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── select_expr_expander.rs │ │ │ │ └── select_list.rs │ │ │ ├── bind_set.rs │ │ │ ├── bind_statement.rs │ │ │ ├── column_binder.rs │ │ │ ├── constant_binder.rs │ │ │ ├── expr_binder.rs │ │ │ ├── ident.rs │ │ │ ├── mod.rs │ │ │ └── table_list.rs │ │ ├── logical_aggregate.rs │ │ ├── logical_attach.rs │ │ ├── logical_copy.rs │ │ ├── logical_create.rs │ │ ├── logical_describe.rs │ │ ├── logical_discard.rs │ │ ├── logical_distinct.rs │ │ ├── logical_drop.rs │ │ ├── logical_explain.rs │ │ ├── logical_expression_list.rs │ │ ├── logical_filter.rs │ │ ├── logical_inout.rs │ │ ├── logical_insert.rs │ │ ├── logical_join.rs │ │ ├── logical_limit.rs │ │ ├── logical_materialization.rs │ │ ├── logical_no_rows.rs │ │ ├── logical_order.rs │ │ ├── logical_project.rs │ │ ├── logical_scan.rs │ │ ├── logical_set.rs │ │ ├── logical_setop.rs │ │ ├── logical_single_row.rs │ │ ├── logical_unnest.rs │ │ ├── logical_window.rs │ │ ├── mod.rs │ │ ├── operator.rs │ │ ├── planner │ │ │ ├── mod.rs │ │ │ ├── plan_copy.rs │ │ │ ├── plan_create_table.rs │ │ │ ├── plan_explain.rs │ │ │ ├── plan_from.rs │ │ │ ├── plan_insert.rs │ │ │ ├── plan_query.rs │ │ │ ├── plan_select.rs │ │ │ ├── plan_setop.rs │ │ │ ├── plan_statement.rs │ │ │ ├── plan_subquery.rs │ │ │ └── plan_unnest.rs │ │ └── resolver │ │ │ ├── expr_resolver.rs │ │ │ ├── mod.rs │ │ │ ├── resolve_context.rs │ │ │ ├── resolve_normal.rs │ │ │ ├── resolved_cte.rs │ │ │ ├── resolved_function.rs │ │ │ ├── resolved_table.rs │ │ │ └── resolved_table_function.rs │ │ ├── optimizer │ │ ├── column_prune.rs │ │ ├── common_subexpression.rs │ │ ├── expr_rewrite │ │ │ ├── const_fold.rs │ │ │ ├── distributive_or.rs │ │ │ ├── join_filter_or.rs │ │ │ ├── like.rs │ │ │ ├── mod.rs │ │ │ └── unnest_conjunction.rs │ │ ├── filter_pushdown │ │ │ ├── condition_extractor.rs │ │ │ ├── extracted_filter.rs │ │ │ ├── generator.rs │ │ │ ├── mod.rs │ │ │ └── split.rs │ │ ├── join_reorder │ │ │ ├── edge.rs │ │ │ ├── graph.rs │ │ │ ├── mod.rs │ │ │ ├── statistics.rs │ │ │ └── subgraph.rs │ │ ├── limit_pushdown.rs │ │ ├── location.rs │ │ ├── mod.rs │ │ ├── redundant_groups.rs │ │ ├── scan_filter.rs │ │ ├── selection_reorder.rs │ │ └── sort_limit_hint.rs │ │ ├── runtime │ │ ├── filesystem │ │ │ ├── directory.rs │ │ │ ├── dispatch.rs │ │ │ ├── file_ext.rs │ │ │ ├── file_provider.rs │ │ │ ├── glob.rs │ │ │ ├── memory.rs │ │ │ └── mod.rs │ │ ├── handle.rs │ │ ├── mod.rs │ │ ├── pipeline.rs │ │ ├── profile_buffer.rs │ │ ├── system.rs │ │ └── time.rs │ │ ├── shell │ │ ├── code_point_string.rs │ │ ├── debug.rs │ │ ├── highlighter.rs │ │ ├── lineedit.rs │ │ ├── mod.rs │ │ ├── raw.rs │ │ └── vt100.rs │ │ ├── statistics │ │ ├── hll.rs │ │ ├── mod.rs │ │ ├── tdigest.rs │ │ └── value.rs │ │ ├── storage │ │ ├── datatable.rs │ │ ├── mod.rs │ │ ├── projections.rs │ │ ├── scan_filter.rs │ │ └── storage_manager.rs │ │ ├── testutil │ │ ├── array_assert.rs │ │ ├── database_context.rs │ │ ├── generate_batch.rs │ │ ├── mod.rs │ │ ├── operator_wrapper.rs │ │ ├── plan_exprs.rs │ │ └── row_blocks.rs │ │ └── util │ │ ├── cell.rs │ │ ├── fmt │ │ ├── displayable.rs │ │ └── mod.rs │ │ ├── future.rs │ │ ├── iter.rs │ │ ├── marker.rs │ │ ├── mod.rs │ │ └── task.rs ├── glaredb_error │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── glaredb_ext_csv │ ├── Cargo.toml │ └── src │ │ ├── decoder.rs │ │ ├── dialect.rs │ │ ├── extension.rs │ │ ├── functions │ │ ├── mod.rs │ │ └── read_csv.rs │ │ ├── lib.rs │ │ ├── reader.rs │ │ ├── schema.rs │ │ └── writer.rs ├── glaredb_ext_default │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── glaredb_ext_delta │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── protocol │ │ ├── action.rs │ │ ├── mod.rs │ │ ├── schema.rs │ │ └── snapshot.rs ├── glaredb_ext_iceberg │ ├── Cargo.toml │ └── src │ │ ├── catalog │ │ ├── client.rs │ │ ├── mod.rs │ │ ├── rest.rs │ │ └── spec.rs │ │ ├── extension.rs │ │ ├── functions │ │ ├── metadata.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ └── table │ │ ├── mod.rs │ │ ├── spec │ │ ├── manifest.rs │ │ ├── metadata.rs │ │ ├── mod.rs │ │ └── schema.rs │ │ └── state.rs ├── glaredb_ext_parquet │ ├── Cargo.toml │ ├── README.md │ ├── regen.sh │ └── src │ │ ├── basic.rs │ │ ├── bloom_filter │ │ └── mod.rs │ │ ├── column │ │ ├── bitutil.rs │ │ ├── column_reader.rs │ │ ├── encoding │ │ │ ├── byte_stream_split.rs │ │ │ ├── delta_binary_packed.rs │ │ │ ├── delta_byte_array.rs │ │ │ ├── delta_length_byte_array.rs │ │ │ ├── dictionary.rs │ │ │ ├── mod.rs │ │ │ ├── plain.rs │ │ │ └── rle_bit_packed.rs │ │ ├── mod.rs │ │ ├── page_reader.rs │ │ ├── read_buffer.rs │ │ ├── row_group_pruner.rs │ │ ├── struct_reader.rs │ │ └── value_reader │ │ │ ├── bool.rs │ │ │ ├── int96.rs │ │ │ ├── mod.rs │ │ │ ├── primitive.rs │ │ │ └── varlen.rs │ │ ├── compression.rs │ │ ├── data_type.rs │ │ ├── encodings │ │ ├── decoding │ │ │ ├── byte_stream_split_decoder.rs │ │ │ ├── mod.rs │ │ │ └── view.rs │ │ ├── encoding │ │ │ ├── byte_stream_split_encoder.rs │ │ │ ├── dict_encoder.rs │ │ │ └── mod.rs │ │ ├── levels.rs │ │ ├── mod.rs │ │ └── rle.rs │ │ ├── extension.rs │ │ ├── format.rs │ │ ├── functions │ │ ├── metadata.rs │ │ ├── mod.rs │ │ └── scan.rs │ │ ├── lib.rs │ │ ├── metadata │ │ ├── loader.rs │ │ ├── mod.rs │ │ ├── page_encoding_stats.rs │ │ ├── page_index │ │ │ ├── index.rs │ │ │ ├── index_reader.rs │ │ │ └── mod.rs │ │ ├── properties.rs │ │ └── statistics.rs │ │ ├── page.rs │ │ ├── reader.rs │ │ ├── schema │ │ ├── convert.rs │ │ ├── mod.rs │ │ ├── parser.rs │ │ ├── printer.rs │ │ ├── types.rs │ │ └── visitor.rs │ │ ├── testutil │ │ ├── file_util.rs │ │ ├── miri.rs │ │ ├── mod.rs │ │ └── rand_gen.rs │ │ ├── thrift.rs │ │ └── util │ │ ├── bit_pack.rs │ │ ├── bit_util.rs │ │ ├── interner.rs │ │ └── mod.rs ├── glaredb_ext_spark │ ├── Cargo.toml │ └── src │ │ ├── functions │ │ ├── csc.rs │ │ ├── expm1.rs │ │ └── mod.rs │ │ └── lib.rs ├── glaredb_ext_tpch_gen │ ├── Cargo.toml │ └── src │ │ ├── functions │ │ ├── customer.rs │ │ ├── lineitem.rs │ │ ├── mod.rs │ │ ├── nation.rs │ │ ├── orders.rs │ │ ├── part.rs │ │ ├── partsupp.rs │ │ ├── region.rs │ │ ├── supplier.rs │ │ └── table_gen.rs │ │ └── lib.rs ├── glaredb_http │ ├── Cargo.toml │ └── src │ │ ├── client.rs │ │ ├── filesystem.rs │ │ ├── gcs │ │ ├── credentials.rs │ │ ├── directory.rs │ │ ├── filesystem.rs │ │ ├── list.rs │ │ └── mod.rs │ │ ├── handle.rs │ │ ├── lib.rs │ │ ├── list.rs │ │ └── s3 │ │ ├── credentials.rs │ │ ├── directory.rs │ │ ├── filesystem.rs │ │ ├── hex.rs │ │ ├── list.rs │ │ └── mod.rs ├── glaredb_node │ ├── .gitignore │ ├── Cargo.toml │ ├── build.rs │ ├── package.json │ ├── src │ │ ├── errors.rs │ │ ├── lib.rs │ │ └── session.rs │ └── test.js ├── glaredb_parser │ ├── Cargo.toml │ └── src │ │ ├── ast │ │ ├── attach.rs │ │ ├── copy.rs │ │ ├── create_schema.rs │ │ ├── create_table.rs │ │ ├── create_view.rs │ │ ├── cte.rs │ │ ├── datatype.rs │ │ ├── describe.rs │ │ ├── discard.rs │ │ ├── drop.rs │ │ ├── explain.rs │ │ ├── expr.rs │ │ ├── from.rs │ │ ├── insert.rs │ │ ├── mod.rs │ │ ├── modifiers.rs │ │ ├── query.rs │ │ ├── select.rs │ │ ├── show.rs │ │ ├── variable.rs │ │ └── window.rs │ │ ├── keywords.rs │ │ ├── lib.rs │ │ ├── meta.rs │ │ ├── parser.rs │ │ ├── statement.rs │ │ └── tokens.rs ├── glaredb_proto │ ├── Cargo.toml │ ├── proto │ │ ├── access.proto │ │ ├── array.proto │ │ ├── ast │ │ │ └── raw.proto │ │ ├── catalog.proto │ │ ├── execution.proto │ │ ├── expr.proto │ │ ├── foreign.proto │ │ ├── functions.proto │ │ ├── hybrid.proto │ │ ├── logical.proto │ │ ├── physical_expr.proto │ │ ├── physical_type.proto │ │ ├── resolver.proto │ │ └── schema.proto │ └── src │ │ └── lib.rs ├── glaredb_python │ ├── Cargo.toml │ ├── README.md │ ├── benchmarks │ │ └── run_tpch.py │ ├── pyproject.toml │ ├── src │ │ ├── errors.rs │ │ ├── event_loop.rs │ │ ├── lib.rs │ │ ├── print.rs │ │ └── session.rs │ └── tests │ │ └── test_basic.py ├── glaredb_rt_native │ ├── Cargo.toml │ └── src │ │ ├── filesystem.rs │ │ ├── http.rs │ │ ├── lib.rs │ │ ├── runtime.rs │ │ ├── threaded │ │ ├── handle.rs │ │ ├── mod.rs │ │ └── task.rs │ │ └── time.rs ├── glaredb_slt │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── glaredb_wasm │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── errors.rs │ │ ├── http.rs │ │ ├── lib.rs │ │ ├── origin_filesystem.rs │ │ ├── runtime.rs │ │ ├── session.rs │ │ ├── shell.rs │ │ ├── time.rs │ │ └── tracing.rs ├── harness │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── args.rs │ │ ├── lib.rs │ │ ├── printer.rs │ │ ├── sqlfile │ │ ├── bench_parser.rs │ │ ├── find.rs │ │ ├── mod.rs │ │ ├── parser.rs │ │ ├── slt_parser.rs │ │ └── vars.rs │ │ └── trial.rs └── logutil │ ├── Cargo.toml │ └── src │ └── lib.rs ├── docs ├── clients │ ├── cli.md │ ├── index.md │ └── rust.md ├── development │ ├── benchmarking.md │ ├── building.md │ ├── index.md │ └── testing.md ├── get-started │ ├── index.md │ └── install.md ├── index.md ├── integrations │ ├── data-generation │ │ ├── index.md │ │ └── tpch.md │ ├── file-formats │ │ ├── csv.md │ │ ├── index.md │ │ └── parquet.md │ ├── file-systems │ │ ├── gcs.md │ │ ├── http.md │ │ ├── index.md │ │ ├── local.md │ │ ├── overview.md │ │ └── s3.md │ ├── index.md │ └── tables-and-catalogs │ │ ├── iceberg.md │ │ └── index.md └── sql │ ├── commands │ ├── create-schema.md │ ├── create-table.md │ ├── create-view.md │ ├── describe.md │ ├── drop.md │ ├── explain.md │ ├── index.md │ ├── insert.md │ └── set-reset.md │ ├── datatypes.md │ ├── expressions │ ├── arithmetic.md │ ├── comparison.md │ ├── index.md │ ├── logical.md │ └── subqueries.md │ ├── functions │ ├── aggregate.md │ ├── approximate-aggregate.md │ ├── date-time.md │ ├── index.md │ ├── list.md │ ├── numeric.md │ ├── operator.md │ ├── regexp.md │ ├── statistical-aggregate.md │ ├── string.md │ ├── system.md │ └── table.md │ ├── identifiers.md │ ├── index.md │ └── query-syntax │ ├── from.md │ ├── group-by.md │ ├── having.md │ ├── index.md │ ├── limit.md │ ├── order-by.md │ ├── select.md │ ├── values.md │ ├── where.md │ └── with.md ├── examples ├── README.md ├── example_basic │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── example_extension_aggregate_function │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── example_extension_scalar_function │ ├── Cargo.toml │ └── src │ │ └── main.rs └── example_extension_table_function │ ├── Cargo.toml │ └── src │ └── main.rs ├── install.sh ├── rustfmt.toml ├── scripts ├── assert_cargo_version.sh ├── bench_download_clickbench_data.sh ├── bench_download_tpch_data.sh ├── bench_gcp.sh ├── ci_publish_crates.sh ├── ci_run_cli_non_interactive.sh ├── ci_run_examples.sh ├── ci_run_nodejs_tests.sh ├── ci_run_python_tests.sh ├── codesign_macos.sh ├── create-test-postgres-db.sh ├── format.sh ├── notarize_macos.sh ├── run_miri.sh └── run_slt_standard.sh ├── slt ├── clickbench │ ├── partitioned │ │ ├── describe.slt │ │ ├── q00.slt │ │ ├── q01.slt │ │ ├── q02.slt │ │ ├── q03.slt │ │ ├── q04.slt │ │ ├── q05.slt │ │ ├── q06.slt │ │ ├── q07.slt │ │ ├── q08.slt │ │ ├── q09.slt │ │ ├── q10.slt │ │ ├── q11.slt │ │ ├── q12.slt │ │ ├── q13.slt │ │ ├── q14.slt │ │ ├── q15.slt │ │ ├── q16.slt │ │ ├── q17.slt │ │ ├── q18.slt │ │ ├── q19.slt │ │ ├── q20.slt │ │ ├── q21.slt │ │ ├── q22.slt │ │ ├── q23.slt │ │ ├── q24.slt │ │ ├── q25.slt │ │ ├── q26.slt │ │ ├── q27.slt │ │ ├── q28.slt │ │ ├── q29.slt │ │ ├── q30.slt │ │ ├── q31.slt │ │ ├── q32.slt │ │ ├── q33.slt │ │ ├── q34.slt │ │ ├── q35.slt │ │ ├── q36.slt │ │ ├── q37.slt │ │ ├── q38.slt │ │ ├── q39.slt │ │ ├── q40.slt │ │ ├── q41.slt │ │ └── q42.slt │ └── single │ │ ├── describe.slt │ │ ├── q00.slt │ │ ├── q01.slt │ │ ├── q02.slt │ │ ├── q03.slt │ │ ├── q04.slt │ │ ├── q05.slt │ │ ├── q06.slt │ │ ├── q07.slt │ │ ├── q08.slt │ │ ├── q09.slt │ │ ├── q10.slt │ │ ├── q11.slt │ │ ├── q12.slt │ │ ├── q13.slt │ │ ├── q14.slt │ │ ├── q15.slt │ │ ├── q16.slt │ │ ├── q17.slt │ │ ├── q18.slt │ │ ├── q19.slt │ │ ├── q20.slt │ │ ├── q21.slt │ │ ├── q22.slt │ │ ├── q23.slt │ │ ├── q24.slt │ │ ├── q25.slt │ │ ├── q26.slt │ │ ├── q27.slt │ │ ├── q28.slt │ │ ├── q29.slt │ │ ├── q30.slt │ │ ├── q31.slt │ │ ├── q32.slt │ │ ├── q33.slt │ │ ├── q34.slt │ │ ├── q35.slt │ │ ├── q36.slt │ │ ├── q37.slt │ │ ├── q38.slt │ │ ├── q39.slt │ │ ├── q40.slt │ │ ├── q41.slt │ │ └── q42.slt ├── csv │ ├── copy_to.slt │ ├── glob_different_num_columns.slt │ ├── glob_numbers.slt │ ├── infer │ │ ├── all_null.slt │ │ ├── boolean_values.slt │ │ ├── dup_header_name.slt │ │ ├── empty_first_line.slt │ │ ├── empty_header_names.slt │ │ ├── empty_middle_line.slt │ │ ├── escaped_quotes.slt │ │ ├── infer_string_lit_as_int.slt │ │ ├── mixed_type_pipe_delim.slt │ │ ├── semicolon_delim.slt │ │ ├── single_quotes.slt │ │ ├── special_float_values.slt │ │ ├── tab_delim.slt │ │ └── whitespace_handling.slt │ ├── read_file_list.slt │ ├── read_tsv.slt │ ├── simple.slt │ ├── small_batch_size.slt │ ├── tpch_small │ │ ├── lineitem.slt │ │ └── nation.slt │ └── userdata1.slt ├── delta │ └── simple.slt ├── gcs │ ├── private │ │ ├── errors.slt │ │ ├── glob.slt │ │ ├── iceberg_metadata.slt │ │ └── userdata0.slt │ └── public │ │ ├── bench_queries_docs.slt │ │ ├── csv_glob_numbers.slt │ │ ├── csv_tpch_small │ │ ├── lineitem.slt │ │ └── nation.slt │ │ ├── glob.slt │ │ ├── iceberg_manifest_list.slt │ │ ├── iceberg_metadata.slt │ │ ├── iceberg_snapshots.slt │ │ ├── parquet_glob_numbers.slt │ │ ├── read_text.slt │ │ └── userdata0.slt ├── http │ ├── read_csv_http.slt │ ├── read_parquet_http.slt │ └── row_group_metadata_http.slt ├── hybrid │ ├── client_only.slt │ ├── copy_to.slt │ ├── create_temp_table_as.slt │ ├── insert_into.slt │ └── remote_attach.slt ├── iceberg │ ├── iceberg_data_files.slt │ ├── iceberg_manifest_list.slt │ ├── iceberg_metadata.slt │ └── iceberg_snapshots.slt ├── parquet │ ├── binary_rle_dict_defs.slt │ ├── capital_column_names.slt │ ├── column_metadata.slt │ ├── copy_to.slt │ ├── describe.slt │ ├── file_infer.slt │ ├── file_metadata.slt │ ├── firebolt_ecommerce_sample.slt │ ├── glob_numbers.slt │ ├── parquet-testing │ │ ├── alltypes_dictionary.slt │ │ ├── alltypes_plain.slt │ │ ├── alltypes_plain_snappy.slt │ │ ├── alltypes_tiny_pages.slt │ │ ├── alltypes_tiny_pages_plain.slt │ │ ├── bad │ │ │ ├── ARROW-GH-41317.slt │ │ │ ├── ARROW-GH-41321.slt │ │ │ ├── ARROW-GH-43605.slt │ │ │ ├── ARROW-GH-45185.slt │ │ │ ├── ARROW-RS-GH-6229-DICTHEADER.slt │ │ │ ├── ARROW-RS-GH-6229-LEVELS.slt │ │ │ └── PARQUET-1481.slt │ │ ├── binary.slt │ │ ├── byte_array_decimal.slt │ │ ├── byte_stream_split_extended_gzip.slt │ │ ├── bytes_stream_split_zstd.slt │ │ ├── column_chunk_key_value_metadata.slt │ │ ├── concatenated_gzip_members.slt │ │ ├── data_index_bloom_encoding_stats.slt │ │ ├── data_index_bloom_encoding_with_length.slt │ │ ├── datapage_v1-corrupt-checksum.slt │ │ ├── datapage_v1-snappy-compressed-checksum.slt │ │ ├── datapage_v1-uncompressed-checksum.slt │ │ ├── datapage_v2_empty_datapage_snappy.slt │ │ ├── datapage_v2_snappy.slt │ │ ├── delta_binary_packed.slt │ │ ├── delta_byte_array.slt │ │ ├── delta_encoding_optional_column.slt │ │ ├── delta_encoding_required_column.slt │ │ ├── delta_length_byte_array.slt │ │ ├── dict-page-offset-zero.slt │ │ ├── fixed_length_byte_array.slt │ │ ├── fixed_length_decimal.slt │ │ ├── fixed_length_decimal_legacy.slt │ │ ├── float16_nonzeros_and_nans.slt │ │ ├── float16_zeros_and_nans.slt │ │ ├── hadoop_lz4_compressed.slt │ │ ├── hadoop_lz4_compressed_larger.slt │ │ ├── incorrect_map_schema.slt │ │ ├── int32_decimal.slt │ │ ├── int32_with_null_pages.slt │ │ ├── int64_decimal.slt │ │ ├── int96_from_spark.slt │ │ ├── large_string_map_brotli.slt │ │ ├── list_columns.slt │ │ ├── lz4_raw_compressed.slt │ │ ├── lz4_raw_compressed_larger.slt │ │ ├── map_no_value.slt │ │ ├── nan_in_stats.slt │ │ ├── nation_dict-malformed.slt │ │ ├── nested_lists.snappy.slt │ │ ├── nested_maps.snappy.slt │ │ ├── nested_structs_rust.slt │ │ ├── non_hadoop_lz4_compressed.slt │ │ ├── nonullable_impala.slt │ │ ├── null_list.slt │ │ ├── nullable_impala.slt │ │ ├── nulls_snappy.slt │ │ ├── old_list_structure.slt │ │ ├── overflow_i16_page_cnt.slt │ │ ├── page_v2_empty_compressed.slt │ │ ├── plain-dict-uncompressed-checksum.slt │ │ ├── repeated_no_annotation.slt │ │ ├── repeated_primitive_no_list.slt │ │ ├── rle-dict-snappy-checksum.slt │ │ ├── rle-dict-uncompressed-corrupt-checksum.slt │ │ ├── rle_boolean_encoding.slt │ │ ├── single_nan.slt │ │ ├── sort_columns.slt │ │ └── unknown-logical-type.slt │ ├── parquet_testing.slt │ ├── read_file_list.slt │ ├── read_parquet_local.slt │ ├── rowgroup_metadata.slt │ ├── small_batch_size.slt │ ├── ts_millis_i64.slt │ └── userdata0.slt ├── postgres │ ├── attach.slt │ └── read_postgres.slt ├── s3 │ ├── README.md │ ├── private │ │ ├── csv_simple.slt │ │ ├── glob.slt │ │ ├── iceberg_metadata.slt │ │ ├── parquet_metadata.slt │ │ └── userdata0.slt │ └── public │ │ ├── csv_glob_numbers.slt │ │ ├── csv_simple.slt │ │ ├── csv_tpch_small │ │ ├── lineitem.slt │ │ └── nation.slt │ │ ├── different_region.slt │ │ ├── file_infer.slt │ │ ├── glob.slt │ │ ├── iceberg_manifest_list.slt │ │ ├── iceberg_metadata.slt │ │ ├── iceberg_snapshots.slt │ │ ├── parquet_glob_numbers.slt │ │ ├── parquet_metadata.slt │ │ ├── parquet_metadata_eu.slt │ │ ├── read_text.slt │ │ └── userdata0.slt ├── standard │ ├── aggregates │ │ ├── aggregate_with_no_column_refs.slt │ │ ├── basic.slt │ │ ├── distinct_grouped.slt │ │ ├── distinct_grouped_many_groups.slt │ │ ├── distinct_ungrouped.slt │ │ ├── group_by_alias.slt │ │ ├── group_by_cube.slt │ │ ├── group_by_duplicated.slt │ │ ├── group_by_errors.slt │ │ ├── group_by_expr.slt │ │ ├── group_by_many.slt │ │ ├── group_by_multiple_cols.slt │ │ ├── group_by_no_aggregates.slt │ │ ├── group_by_order_by.slt │ │ ├── group_by_ordinal.slt │ │ ├── group_by_string.slt │ │ ├── grouping.slt │ │ └── having.slt │ ├── attach │ │ ├── invalid_datasource.slt │ │ └── memory.slt │ ├── cast │ │ ├── binary.slt │ │ ├── cast_overflow.slt │ │ ├── date.slt │ │ ├── decimal.slt │ │ ├── f16.slt │ │ ├── implicit_cast_int_lit.slt │ │ ├── implicit_cast_scalar_agg.slt │ │ ├── implicit_cast_string_lit.slt │ │ ├── integer_minmax.slt │ │ ├── interval.slt │ │ ├── nested_casts.slt │ │ ├── reference_through_cast.slt │ │ ├── string_cast.slt │ │ ├── typed_string.slt │ │ └── unsigned_int.slt │ ├── comments.slt │ ├── create_schema │ │ ├── create_temp_schema.slt │ │ ├── drop_schema_dependants.slt │ │ └── drop_temp_schema.slt │ ├── create_table │ │ ├── create_table.slt │ │ ├── ctas_temp.slt │ │ ├── drop_table.slt │ │ └── temp_table.slt │ ├── cte │ │ ├── cte.slt │ │ ├── insert_cte.slt │ │ └── materialized_cte.slt │ ├── describe │ │ ├── describe_as_subquery.slt │ │ ├── describe_query.slt │ │ └── describe_table.slt │ ├── discard.slt │ ├── equality_join.slt │ ├── explain.slt │ ├── filter │ │ ├── constant.slt │ │ └── duplicate_conditions.slt │ ├── functions │ │ ├── aggregate │ │ │ ├── approx_count_distinct.slt │ │ │ ├── approx_quantile.slt │ │ │ ├── avg.slt │ │ │ ├── bit_and.slt │ │ │ ├── bit_or.slt │ │ │ ├── bool_and.slt │ │ │ ├── bool_or.slt │ │ │ ├── corr.slt │ │ │ ├── count.slt │ │ │ ├── count_star.slt │ │ │ ├── covar.slt │ │ │ ├── first_last.slt │ │ │ ├── minmax.slt │ │ │ ├── regr_avg.slt │ │ │ ├── regr_count.slt │ │ │ ├── regr_r2.slt │ │ │ ├── regr_slope.slt │ │ │ ├── stddev.slt │ │ │ ├── string_agg.slt │ │ │ ├── sum.slt │ │ │ └── sum_decimal.slt │ │ ├── chaining.slt │ │ ├── operators │ │ │ ├── between.slt │ │ │ ├── bit_and_or_not.slt │ │ │ ├── case.slt │ │ │ ├── case_short_circuit.slt │ │ │ └── in.slt │ │ ├── qualified.slt │ │ ├── scalar │ │ │ ├── arith.slt │ │ │ ├── binary │ │ │ │ ├── shl.slt │ │ │ │ └── shr.slt │ │ │ ├── boolean.slt │ │ │ ├── ceil.slt │ │ │ ├── coalesce.slt │ │ │ ├── comparison.slt │ │ │ ├── contains.slt │ │ │ ├── date_comparison.slt │ │ │ ├── datetime │ │ │ │ ├── date_part.slt │ │ │ │ ├── date_trunc.slt │ │ │ │ ├── epoch.slt │ │ │ │ └── extract.slt │ │ │ ├── decimal_arith.slt │ │ │ ├── decimal_arith_add.slt │ │ │ ├── decimal_arith_mul.slt │ │ │ ├── decimal_arith_sub.slt │ │ │ ├── decimal_comparison.slt │ │ │ ├── ends_with.slt │ │ │ ├── f16_arith.slt │ │ │ ├── factorial.slt │ │ │ ├── floor.slt │ │ │ ├── gcd.slt │ │ │ ├── is_bool.slt │ │ │ ├── is_distinct_from.slt │ │ │ ├── is_not_distinct_from.slt │ │ │ ├── is_null.slt │ │ │ ├── isfinite.slt │ │ │ ├── isinf.slt │ │ │ ├── l2_distance.slt │ │ │ ├── lcm.slt │ │ │ ├── like.slt │ │ │ ├── list_comparisons.slt │ │ │ ├── list_extract.slt │ │ │ ├── list_value.slt │ │ │ ├── negate.slt │ │ │ ├── not.slt │ │ │ ├── pi.slt │ │ │ ├── power.slt │ │ │ ├── random.slt │ │ │ ├── right.slt │ │ │ ├── round.slt │ │ │ ├── sign.slt │ │ │ ├── string │ │ │ │ ├── ascii.slt │ │ │ │ ├── ends_with.slt │ │ │ │ ├── initcap.slt │ │ │ │ ├── left.slt │ │ │ │ ├── length.slt │ │ │ │ ├── lower.slt │ │ │ │ ├── lpad.slt │ │ │ │ ├── position.slt │ │ │ │ ├── regexp_count.slt │ │ │ │ ├── regexp_instr.slt │ │ │ │ ├── regexp_like.slt │ │ │ │ ├── regexp_replace.slt │ │ │ │ ├── repeat.slt │ │ │ │ ├── replace.slt │ │ │ │ ├── reverse.slt │ │ │ │ ├── rpad.slt │ │ │ │ ├── starts_with.slt │ │ │ │ ├── string_concat.slt │ │ │ │ ├── string_split_part.slt │ │ │ │ ├── strpos.slt │ │ │ │ ├── substring.slt │ │ │ │ ├── translate.slt │ │ │ │ ├── trim.slt │ │ │ │ └── upper.slt │ │ │ ├── trigonometric.slt │ │ │ ├── trunc.slt │ │ │ └── xor.slt │ │ ├── star_is_special.slt │ │ ├── string │ │ │ └── md5.slt │ │ └── table │ │ │ ├── generate_series.slt │ │ │ ├── glob.slt │ │ │ ├── list_database.slt │ │ │ ├── list_functions.slt │ │ │ ├── list_tables.slt │ │ │ ├── list_views.slt │ │ │ ├── read_text.slt │ │ │ ├── read_text_file_list.slt │ │ │ ├── read_text_into_table.slt │ │ │ ├── read_text_natural_join.slt │ │ │ └── unnest_list.slt │ ├── ident │ │ ├── case_sensitivity.slt │ │ ├── case_sensitivity_alias.slt │ │ ├── case_sensitivity_ambiguous.slt │ │ ├── case_sensitivity_columns.slt │ │ ├── case_sensitivity_views.slt │ │ └── leading_underscore.slt │ ├── insert │ │ ├── insert_cast.slt │ │ ├── insert_count.slt │ │ ├── insert_invalid.slt │ │ └── insert_parallel.slt │ ├── join │ │ ├── cross_join.slt │ │ ├── in_semi_join_with_filter.slt │ │ ├── inner_join.slt │ │ ├── inner_join_eq_neq.slt │ │ ├── inner_join_large_result.slt │ │ ├── inner_join_using.slt │ │ ├── join_empty.slt │ │ ├── lateral_join.slt │ │ ├── lateral_join_aggregate.slt │ │ ├── lateral_left_join.slt │ │ ├── left_join_with_right_filter.slt │ │ ├── left_outer.slt │ │ ├── left_outer_using.slt │ │ ├── natural_join.slt │ │ ├── right_outer.slt │ │ ├── right_outer_using.slt │ │ ├── semi_join.slt │ │ ├── system_join.slt │ │ └── where_or_condition.slt │ ├── limit │ │ ├── basic.slt │ │ ├── global_limit.slt │ │ └── limit_union.slt │ ├── list │ │ └── create_list_larger_than_batch_size.slt │ ├── optimizer │ │ ├── column_pruning_multiple_scans.slt │ │ ├── column_pruning_no_table_projections.slt │ │ ├── cse.slt │ │ ├── filter_pushdown.slt │ │ └── filter_pushdown_nested_cross_join.slt │ ├── order │ │ ├── basic.slt │ │ ├── order_by_alias.slt │ │ ├── order_by_large.slt │ │ ├── order_by_many.slt │ │ ├── order_by_noninline_data.slt │ │ ├── order_by_nulls.slt │ │ ├── order_by_ordinal.slt │ │ ├── order_by_strings.slt │ │ ├── order_group.slt │ │ ├── order_limit_offsets.slt │ │ └── order_union.slt │ ├── parallelism │ │ └── arbitrary_values.slt │ ├── select │ │ ├── columns.slt │ │ ├── distinct.slt │ │ ├── exclude_except.slt │ │ ├── from_missing.slt │ │ ├── from_values_no_parens.slt │ │ ├── reference_alias_in_select.slt │ │ ├── replace.slt │ │ ├── replace_different_types.slt │ │ └── unnest.slt │ ├── setops │ │ ├── union.slt │ │ └── union_distinct.slt │ ├── show │ │ ├── show_databases.slt │ │ ├── show_schemas.slt │ │ └── show_tables.slt │ ├── simple.slt │ ├── subqueries │ │ ├── any_all.slt │ │ ├── correlated_any.slt │ │ ├── correlated_exists.slt │ │ ├── correlated_in.slt │ │ ├── correlated_lateral.slt │ │ ├── correlated_set_semantics.slt │ │ ├── correlated_subquery.slt │ │ ├── from_subquery.slt │ │ ├── from_table_subquery.slt │ │ ├── in.slt │ │ ├── neumann.slt │ │ ├── scalar │ │ │ ├── count_subquery.slt │ │ │ ├── scalar_exists.slt │ │ │ └── scalar_subquery.slt │ │ └── subquery_alias.slt │ ├── time │ │ ├── date_arith.slt │ │ ├── date_cmp.slt │ │ └── interval_arith.slt │ ├── values │ │ ├── implicit_cast.slt │ │ ├── lateral_values.slt │ │ ├── num_columns.slt │ │ └── values_aliases.slt │ ├── vars │ │ ├── reset.slt │ │ ├── set_batch_size.slt │ │ ├── set_partitions.slt │ │ ├── set_var.slt │ │ └── verify_optimized_plan.slt │ ├── views │ │ ├── create_view.slt │ │ ├── temp_view.slt │ │ ├── view_in_subquery.slt │ │ └── view_qualified_reference.slt │ └── window │ │ └── basic.slt ├── tpcds │ ├── describe_files.slt │ ├── q01.slt │ ├── q02.slt │ ├── q03.slt │ ├── q04.slt │ ├── q05.slt │ ├── q06.slt │ ├── q07.slt │ ├── q08.slt │ ├── q09.slt │ ├── q10.slt │ ├── q11.slt │ ├── q12.slt │ ├── q13.slt │ ├── q14.slt │ ├── q15.slt │ ├── q16.slt │ ├── q17.slt │ ├── q18.slt │ ├── q19.slt │ ├── q20.slt │ ├── q21.slt │ ├── q22.slt │ ├── q23.slt │ ├── q24.slt │ ├── q25.slt │ ├── q26.slt │ ├── q27.slt │ ├── q28.slt │ ├── q29.slt │ ├── q30.slt │ ├── q31.slt │ ├── q32.slt │ ├── q33.slt │ ├── q34.slt │ ├── q35.slt │ ├── q36.slt │ ├── q37.slt │ ├── q38.slt │ ├── q39.slt │ ├── q40.slt │ ├── q41.slt │ ├── q42.slt │ ├── q43.slt │ ├── q44.slt │ ├── q45.slt │ ├── q46.slt │ ├── q47.slt │ ├── q48.slt │ ├── q49.slt │ ├── q50.slt │ ├── q51.slt │ ├── q52.slt │ ├── q53.slt │ ├── q54.slt │ ├── q55.slt │ ├── q56.slt │ ├── q57.slt │ ├── q58.slt │ ├── q59.slt │ ├── q60.slt │ ├── q61.slt │ ├── q62.slt │ ├── q63.slt │ ├── q64.slt │ ├── q65.slt │ ├── q66.slt │ ├── q67.slt │ ├── q68.slt │ ├── q69.slt │ ├── q70.slt │ ├── q71.slt │ ├── q72.slt │ ├── q73.slt │ ├── q74.slt │ ├── q75.slt │ ├── q76.slt │ ├── q77.slt │ ├── q78.slt │ ├── q79.slt │ ├── q80.slt │ ├── q81.slt │ ├── q82.slt │ ├── q83.slt │ ├── q84.slt │ ├── q85.slt │ ├── q86.slt │ ├── q87.slt │ ├── q88.slt │ ├── q89.slt │ ├── q90.slt │ ├── q91.slt │ ├── q92.slt │ ├── q93.slt │ ├── q94.slt │ ├── q95.slt │ ├── q96.slt │ ├── q97.slt │ ├── q98.slt │ └── q99.slt ├── tpch_gen │ ├── describe.slt │ ├── linitem.slt │ ├── orders.slt │ └── region.slt ├── tpchbench │ ├── describe.slt │ ├── q01.slt │ ├── q02.slt │ ├── q03.slt │ ├── q04.slt │ ├── q05.slt │ ├── q06.slt │ ├── q07.slt │ ├── q08.slt │ ├── q09.slt │ ├── q10.slt │ ├── q11.slt │ ├── q12.slt │ ├── q13.slt │ ├── q14.slt │ ├── q15.slt │ ├── q16.slt │ ├── q17.slt │ ├── q18.slt │ ├── q19.slt │ ├── q20.slt │ ├── q21.slt │ └── q22.slt └── unity_catalog │ ├── attach.slt │ ├── list_schemas.slt │ └── list_tables.slt ├── submodules └── README.md ├── test_bin ├── Cargo.toml └── integration_slt.rs └── testdata ├── cli ├── create_view_v1.sql └── query_view_v1.sql ├── csv ├── all_null_with_header.csv ├── boolean_values.csv ├── dup_header_name.csv ├── empty_first_line.csv ├── empty_header_names.csv ├── empty_middle_line.csv ├── escaped_quotes.csv ├── glob_num_cols │ ├── 2_cols.csv │ └── 3_cols.csv ├── glob_numbers │ ├── 100.csv │ ├── 200.csv │ ├── 300.csv │ ├── 400.csv │ ├── 500.csv │ ├── README.md │ ├── deep │ │ ├── my_favorite_numbers.csv │ │ ├── nested1 │ │ │ ├── 100.csv │ │ │ ├── 200.csv │ │ │ ├── 300.csv │ │ │ ├── 400.csv │ │ │ └── 500.csv │ │ └── nested2 │ │ │ ├── 100.csv │ │ │ ├── 200.csv │ │ │ ├── 300.csv │ │ │ ├── 400.csv │ │ │ └── 500.csv │ ├── nested1 │ │ ├── 100.csv │ │ ├── 200.csv │ │ ├── 300.csv │ │ ├── 400.csv │ │ └── 500.csv │ └── nested2 │ │ ├── 100.csv │ │ ├── 200.csv │ │ ├── 300.csv │ │ ├── 400.csv │ │ └── 500.csv ├── mixed_type_pipe_delim.csv ├── semicolon_delim.csv ├── simple.csv ├── single_quotes.csv ├── special_float_values.csv ├── string_lit_int.csv ├── tab_delim.csv ├── tpch_small │ ├── customer.csv │ ├── lineitem.csv │ ├── nation.csv │ ├── orders.csv │ ├── part.csv │ ├── partsupp.csv │ ├── region.csv │ └── supplier.csv ├── tsv_small.tsv ├── userdata1.csv └── whitespace_handling.csv ├── delta └── table1 │ ├── _delta_log │ ├── 00000000000000000000.json │ ├── 00000000000000000001.json │ └── 00000000000000000002.json │ ├── part-00001-0b80d78e-bee2-4230-917d-96a93ff4ea47-c000.snappy.parquet │ └── part-00001-15c5f284-3ffd-40a3-8618-0065cac3840a-c000.snappy.parquet ├── iceberg ├── README.md ├── generate.py ├── tables-v1 │ ├── lineitem_partitioned │ │ ├── data │ │ │ ├── l_shipmode=AIR │ │ │ │ ├── .00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00001.parquet.crc │ │ │ │ └── 00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00001.parquet │ │ │ ├── l_shipmode=FOB │ │ │ │ ├── .00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00007.parquet.crc │ │ │ │ └── 00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00007.parquet │ │ │ ├── l_shipmode=MAIL │ │ │ │ ├── .00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00002.parquet.crc │ │ │ │ └── 00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00002.parquet │ │ │ ├── l_shipmode=RAIL │ │ │ │ ├── .00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00003.parquet.crc │ │ │ │ └── 00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00003.parquet │ │ │ ├── l_shipmode=REG+AIR │ │ │ │ ├── .00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00006.parquet.crc │ │ │ │ └── 00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00006.parquet │ │ │ ├── l_shipmode=SHIP │ │ │ │ ├── .00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00004.parquet.crc │ │ │ │ └── 00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00004.parquet │ │ │ └── l_shipmode=TRUCK │ │ │ │ ├── .00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00005.parquet.crc │ │ │ │ └── 00000-5-4ab0cc8a-b1c5-4c5c-8ca9-0dee868f96bc-00005.parquet │ │ └── metadata │ │ │ ├── .157b2954-35a0-4a5d-946e-76723d3f153c-m0.avro.crc │ │ │ ├── .snap-7556422720324607284-1-157b2954-35a0-4a5d-946e-76723d3f153c.avro.crc │ │ │ ├── .v1.metadata.json.crc │ │ │ ├── .version-hint.text.crc │ │ │ ├── 157b2954-35a0-4a5d-946e-76723d3f153c-m0.avro │ │ │ ├── snap-7556422720324607284-1-157b2954-35a0-4a5d-946e-76723d3f153c.avro │ │ │ ├── v1.metadata.json │ │ │ └── version-hint.text │ ├── lineitem_simple │ │ ├── data │ │ │ ├── .00000-1-f1cb7836-febe-45ef-b786-56a1ff4aefc1-00001.parquet.crc │ │ │ └── 00000-1-f1cb7836-febe-45ef-b786-56a1ff4aefc1-00001.parquet │ │ └── metadata │ │ │ ├── .bb767407-7be5-4a32-9b5e-63a8ed6d8f2a-m0.avro.crc │ │ │ ├── .snap-924970080087887963-1-bb767407-7be5-4a32-9b5e-63a8ed6d8f2a.avro.crc │ │ │ ├── .v1.metadata.json.crc │ │ │ ├── .version-hint.text.crc │ │ │ ├── bb767407-7be5-4a32-9b5e-63a8ed6d8f2a-m0.avro │ │ │ ├── snap-924970080087887963-1-bb767407-7be5-4a32-9b5e-63a8ed6d8f2a.avro │ │ │ ├── v1.metadata.json │ │ │ └── version-hint.text │ └── lineitem_versioned │ │ ├── data │ │ ├── .00000-6-b94b5d8e-1a35-4fde-8b1a-b5c766e3cba4-00001.parquet.crc │ │ ├── .00000-7-8fd3874c-9aca-444c-a2b1-77840d9c3030-00001.parquet.crc │ │ ├── 00000-6-b94b5d8e-1a35-4fde-8b1a-b5c766e3cba4-00001.parquet │ │ └── 00000-7-8fd3874c-9aca-444c-a2b1-77840d9c3030-00001.parquet │ │ └── metadata │ │ ├── .0ee4d240-0ce1-4762-9fcd-3e66602c4df4-m0.avro.crc │ │ ├── .4e566a81-8be3-455d-a275-e116c633931e-m0.avro.crc │ │ ├── .snap-5059858397763322359-1-4e566a81-8be3-455d-a275-e116c633931e.avro.crc │ │ ├── .snap-7891046191617315941-1-0ee4d240-0ce1-4762-9fcd-3e66602c4df4.avro.crc │ │ ├── .v1.metadata.json.crc │ │ ├── .v2.metadata.json.crc │ │ ├── .version-hint.text.crc │ │ ├── 0ee4d240-0ce1-4762-9fcd-3e66602c4df4-m0.avro │ │ ├── 4e566a81-8be3-455d-a275-e116c633931e-m0.avro │ │ ├── snap-5059858397763322359-1-4e566a81-8be3-455d-a275-e116c633931e.avro │ │ ├── snap-7891046191617315941-1-0ee4d240-0ce1-4762-9fcd-3e66602c4df4.avro │ │ ├── v1.metadata.json │ │ ├── v2.metadata.json │ │ └── version-hint.text ├── tables-v2 │ ├── lineitem_partitioned │ │ ├── data │ │ │ ├── l_shipmode=AIR │ │ │ │ ├── .00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00001.parquet.crc │ │ │ │ └── 00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00001.parquet │ │ │ ├── l_shipmode=FOB │ │ │ │ ├── .00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00007.parquet.crc │ │ │ │ └── 00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00007.parquet │ │ │ ├── l_shipmode=MAIL │ │ │ │ ├── .00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00002.parquet.crc │ │ │ │ └── 00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00002.parquet │ │ │ ├── l_shipmode=RAIL │ │ │ │ ├── .00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00003.parquet.crc │ │ │ │ └── 00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00003.parquet │ │ │ ├── l_shipmode=REG+AIR │ │ │ │ ├── .00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00006.parquet.crc │ │ │ │ └── 00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00006.parquet │ │ │ ├── l_shipmode=SHIP │ │ │ │ ├── .00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00004.parquet.crc │ │ │ │ └── 00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00004.parquet │ │ │ └── l_shipmode=TRUCK │ │ │ │ ├── .00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00005.parquet.crc │ │ │ │ └── 00000-5-ee7de033-60a3-43ac-98bd-eacd7a2d8b31-00005.parquet │ │ └── metadata │ │ │ ├── .520ee581-12e1-4e5f-8059-8738d531e3ff-m0.avro.crc │ │ │ ├── .snap-4597973029942958420-1-520ee581-12e1-4e5f-8059-8738d531e3ff.avro.crc │ │ │ ├── .v1.metadata.json.crc │ │ │ ├── .version-hint.text.crc │ │ │ ├── 520ee581-12e1-4e5f-8059-8738d531e3ff-m0.avro │ │ │ ├── snap-4597973029942958420-1-520ee581-12e1-4e5f-8059-8738d531e3ff.avro │ │ │ ├── v1.metadata.json │ │ │ └── version-hint.text │ ├── lineitem_simple │ │ ├── data │ │ │ ├── .00000-1-3a276b7e-f8ff-4d24-a026-22621c010f34-00001.parquet.crc │ │ │ └── 00000-1-3a276b7e-f8ff-4d24-a026-22621c010f34-00001.parquet │ │ └── metadata │ │ │ ├── .3cc1cd4c-4ca7-41ba-8dbe-9b7111df1363-m0.avro.crc │ │ │ ├── .snap-7108035762376929897-1-3cc1cd4c-4ca7-41ba-8dbe-9b7111df1363.avro.crc │ │ │ ├── .v1.metadata.json.crc │ │ │ ├── .version-hint.text.crc │ │ │ ├── 3cc1cd4c-4ca7-41ba-8dbe-9b7111df1363-m0.avro │ │ │ ├── snap-7108035762376929897-1-3cc1cd4c-4ca7-41ba-8dbe-9b7111df1363.avro │ │ │ ├── v1.metadata.json │ │ │ └── version-hint.text │ └── lineitem_versioned │ │ ├── data │ │ ├── .00000-6-1f2f0cb8-148f-4b08-bc6d-c938928f2147-00001.parquet.crc │ │ ├── .00000-7-e5c4c121-5e7e-4054-915d-c7fc36c715a3-00001.parquet.crc │ │ ├── 00000-6-1f2f0cb8-148f-4b08-bc6d-c938928f2147-00001.parquet │ │ └── 00000-7-e5c4c121-5e7e-4054-915d-c7fc36c715a3-00001.parquet │ │ └── metadata │ │ ├── .2ac95fc0-5767-4a0a-a986-8575ef5defd0-m0.avro.crc │ │ ├── .a231e3a9-517c-4ce7-9f5e-27c0703f16ad-m0.avro.crc │ │ ├── .snap-2480368519522897709-1-a231e3a9-517c-4ce7-9f5e-27c0703f16ad.avro.crc │ │ ├── .snap-6529358792917324964-1-2ac95fc0-5767-4a0a-a986-8575ef5defd0.avro.crc │ │ ├── .v1.metadata.json.crc │ │ ├── .v2.metadata.json.crc │ │ ├── .version-hint.text.crc │ │ ├── 2ac95fc0-5767-4a0a-a986-8575ef5defd0-m0.avro │ │ ├── a231e3a9-517c-4ce7-9f5e-27c0703f16ad-m0.avro │ │ ├── snap-2480368519522897709-1-a231e3a9-517c-4ce7-9f5e-27c0703f16ad.avro │ │ ├── snap-6529358792917324964-1-2ac95fc0-5767-4a0a-a986-8575ef5defd0.avro │ │ ├── v1.metadata.json │ │ ├── v2.metadata.json │ │ └── version-hint.text ├── tables.py └── wh │ └── default.db │ └── cities │ ├── data │ └── 00000-0-6704a04a-3e2e-415f-b173-b21f4c5b78b7.parquet │ └── metadata │ ├── 00000-46e40e13-1a4e-471f-8c1c-de0d7017f33f.metadata.json │ ├── 00001-278cfebe-cfd4-4475-b30f-1b8ba1ae8eee.metadata.json │ ├── 6704a04a-3e2e-415f-b173-b21f4c5b78b7-m0.avro │ └── snap-8687260678833969554-0-6704a04a-3e2e-415f-b173-b21f4c5b78b7.avro ├── parquet ├── capital_column_names.parquet ├── glob_numbers │ ├── 100.parquet │ ├── 200.parquet │ ├── 300.parquet │ ├── 400.parquet │ ├── 500.parquet │ ├── README.md │ ├── deep │ │ ├── my_favorite_numbers.parquet │ │ ├── nested1 │ │ │ ├── 100.parquet │ │ │ ├── 200.parquet │ │ │ ├── 300.parquet │ │ │ ├── 400.parquet │ │ │ └── 500.parquet │ │ └── nested2 │ │ │ ├── 100.parquet │ │ │ ├── 200.parquet │ │ │ ├── 300.parquet │ │ │ ├── 400.parquet │ │ │ └── 500.parquet │ ├── nested1 │ │ ├── 100.parquet │ │ ├── 200.parquet │ │ ├── 300.parquet │ │ ├── 400.parquet │ │ └── 500.parquet │ └── nested2 │ │ ├── 100.parquet │ │ ├── 200.parquet │ │ ├── 300.parquet │ │ ├── 400.parquet │ │ └── 500.parquet ├── small.parquet ├── ts_millis_i64.parquet └── userdata0.parquet └── text ├── empty.txt ├── glob_simple ├── aaa.txt ├── aab.txt ├── bbb.txt ├── cbb.txt └── ccc.txt └── same_content_different_name ├── 1.txt └── 2.txt /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/bench.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.github/workflows/bench.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/README.md -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/catalogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/archive/catalogs.md -------------------------------------------------------------------------------- /archive/hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/archive/hybrid.md -------------------------------------------------------------------------------- /archive/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/archive/notes.md -------------------------------------------------------------------------------- /archive/old_repo_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/archive/old_repo_readme.md -------------------------------------------------------------------------------- /archive/query-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/archive/query-graph.md -------------------------------------------------------------------------------- /archive/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/archive/sql.md -------------------------------------------------------------------------------- /bench/README.md: -------------------------------------------------------------------------------- 1 | # Benchmarks 2 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q00.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(*) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q01.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(*) FROM hits WHERE AdvEngineID <> 0; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q02.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT SUM(AdvEngineID), COUNT(*), AVG(ResolutionWidth) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q03.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT AVG(UserID) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q04.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(DISTINCT UserID) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q05.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(DISTINCT SearchPhrase) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q06.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q06.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q07.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q07.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q08.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q08.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q09.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q09.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q10.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q10.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q11.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q11.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q12.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q12.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q13.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q13.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q14.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q14.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q15.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q15.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q16.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q16.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q17.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q17.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q18.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q18.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q19.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q19.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q20.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(*) FROM hits WHERE URL LIKE '%google%'; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q21.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q21.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q22.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q22.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q23.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT * FROM hits WHERE URL LIKE '%google%' ORDER BY EventTime LIMIT 10; 3 | -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q24.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q24.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q25.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q25.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q26.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q26.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q27.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q27.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q28.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q28.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q29.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q29.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q30.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q30.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q31.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q31.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q32.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q32.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q33.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q33.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q34.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q34.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q35.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q35.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q36.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q36.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q37.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q37.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q38.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q38.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q39.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q39.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q40.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q40.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q41.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q41.bench -------------------------------------------------------------------------------- /bench/clickbench/partitioned/q42.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/partitioned/q42.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q00.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(*) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q01.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(*) FROM hits WHERE AdvEngineID <> 0; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q02.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT SUM(AdvEngineID), COUNT(*), AVG(ResolutionWidth) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q03.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT AVG(UserID) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q04.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(DISTINCT UserID) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q05.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(DISTINCT SearchPhrase) FROM hits; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q06.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q06.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q07.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q07.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q08.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q08.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q09.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q09.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q10.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q10.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q11.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q11.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q12.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q12.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q13.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q13.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q14.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q14.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q15.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q15.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q16.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q16.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q17.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q17.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q18.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q18.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q19.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q19.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q20.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT COUNT(*) FROM hits WHERE URL LIKE '%google%'; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q21.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q21.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q22.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q22.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q23.bench: -------------------------------------------------------------------------------- 1 | run 2 | SELECT * FROM hits WHERE URL LIKE '%google%' ORDER BY EventTime LIMIT 10; 3 | -------------------------------------------------------------------------------- /bench/clickbench/single/q24.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q24.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q25.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q25.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q26.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q26.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q27.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q27.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q28.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q28.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q29.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q29.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q30.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q30.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q31.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q31.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q32.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q32.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q33.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q33.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q34.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q34.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q35.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q35.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q36.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q36.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q37.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q37.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q38.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q38.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q39.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q39.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q40.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q40.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q41.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q41.bench -------------------------------------------------------------------------------- /bench/clickbench/single/q42.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/clickbench/single/q42.bench -------------------------------------------------------------------------------- /bench/micro/limit/limit_early_stop.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/micro/limit/limit_early_stop.bench -------------------------------------------------------------------------------- /bench/micro/select_1.bench: -------------------------------------------------------------------------------- 1 | # Testing the bench stuff. 2 | 3 | run 4 | SELECT 1 5 | -------------------------------------------------------------------------------- /bench/tpch/1/q01.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q01.bench -------------------------------------------------------------------------------- /bench/tpch/1/q02.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q02.bench -------------------------------------------------------------------------------- /bench/tpch/1/q03.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q03.bench -------------------------------------------------------------------------------- /bench/tpch/1/q04.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q04.bench -------------------------------------------------------------------------------- /bench/tpch/1/q05.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q05.bench -------------------------------------------------------------------------------- /bench/tpch/1/q06.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q06.bench -------------------------------------------------------------------------------- /bench/tpch/1/q07.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q07.bench -------------------------------------------------------------------------------- /bench/tpch/1/q08.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q08.bench -------------------------------------------------------------------------------- /bench/tpch/1/q09.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q09.bench -------------------------------------------------------------------------------- /bench/tpch/1/q10.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q10.bench -------------------------------------------------------------------------------- /bench/tpch/1/q11.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q11.bench -------------------------------------------------------------------------------- /bench/tpch/1/q12.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q12.bench -------------------------------------------------------------------------------- /bench/tpch/1/q13.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q13.bench -------------------------------------------------------------------------------- /bench/tpch/1/q14.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q14.bench -------------------------------------------------------------------------------- /bench/tpch/1/q15.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q15.bench -------------------------------------------------------------------------------- /bench/tpch/1/q16.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q16.bench -------------------------------------------------------------------------------- /bench/tpch/1/q17.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q17.bench -------------------------------------------------------------------------------- /bench/tpch/1/q18.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q18.bench -------------------------------------------------------------------------------- /bench/tpch/1/q19.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q19.bench -------------------------------------------------------------------------------- /bench/tpch/1/q20.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q20.bench -------------------------------------------------------------------------------- /bench/tpch/1/q21.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q21.bench -------------------------------------------------------------------------------- /bench/tpch/1/q22.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/1/q22.bench -------------------------------------------------------------------------------- /bench/tpch/10/q01.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q01.bench -------------------------------------------------------------------------------- /bench/tpch/10/q02.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q02.bench -------------------------------------------------------------------------------- /bench/tpch/10/q03.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q03.bench -------------------------------------------------------------------------------- /bench/tpch/10/q04.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q04.bench -------------------------------------------------------------------------------- /bench/tpch/10/q05.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q05.bench -------------------------------------------------------------------------------- /bench/tpch/10/q06.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q06.bench -------------------------------------------------------------------------------- /bench/tpch/10/q07.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q07.bench -------------------------------------------------------------------------------- /bench/tpch/10/q08.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q08.bench -------------------------------------------------------------------------------- /bench/tpch/10/q09.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q09.bench -------------------------------------------------------------------------------- /bench/tpch/10/q10.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q10.bench -------------------------------------------------------------------------------- /bench/tpch/10/q11.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q11.bench -------------------------------------------------------------------------------- /bench/tpch/10/q12.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q12.bench -------------------------------------------------------------------------------- /bench/tpch/10/q13.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q13.bench -------------------------------------------------------------------------------- /bench/tpch/10/q14.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q14.bench -------------------------------------------------------------------------------- /bench/tpch/10/q15.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q15.bench -------------------------------------------------------------------------------- /bench/tpch/10/q16.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q16.bench -------------------------------------------------------------------------------- /bench/tpch/10/q17.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q17.bench -------------------------------------------------------------------------------- /bench/tpch/10/q18.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q18.bench -------------------------------------------------------------------------------- /bench/tpch/10/q19.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q19.bench -------------------------------------------------------------------------------- /bench/tpch/10/q20.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q20.bench -------------------------------------------------------------------------------- /bench/tpch/10/q21.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q21.bench -------------------------------------------------------------------------------- /bench/tpch/10/q22.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/10/q22.bench -------------------------------------------------------------------------------- /bench/tpch/100/q01.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q01.bench -------------------------------------------------------------------------------- /bench/tpch/100/q02.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q02.bench -------------------------------------------------------------------------------- /bench/tpch/100/q03.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q03.bench -------------------------------------------------------------------------------- /bench/tpch/100/q04.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q04.bench -------------------------------------------------------------------------------- /bench/tpch/100/q05.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q05.bench -------------------------------------------------------------------------------- /bench/tpch/100/q06.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q06.bench -------------------------------------------------------------------------------- /bench/tpch/100/q07.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q07.bench -------------------------------------------------------------------------------- /bench/tpch/100/q08.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q08.bench -------------------------------------------------------------------------------- /bench/tpch/100/q09.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q09.bench -------------------------------------------------------------------------------- /bench/tpch/100/q10.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q10.bench -------------------------------------------------------------------------------- /bench/tpch/100/q11.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q11.bench -------------------------------------------------------------------------------- /bench/tpch/100/q12.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q12.bench -------------------------------------------------------------------------------- /bench/tpch/100/q13.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q13.bench -------------------------------------------------------------------------------- /bench/tpch/100/q14.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q14.bench -------------------------------------------------------------------------------- /bench/tpch/100/q15.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q15.bench -------------------------------------------------------------------------------- /bench/tpch/100/q16.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q16.bench -------------------------------------------------------------------------------- /bench/tpch/100/q17.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q17.bench -------------------------------------------------------------------------------- /bench/tpch/100/q18.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q18.bench -------------------------------------------------------------------------------- /bench/tpch/100/q19.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q19.bench -------------------------------------------------------------------------------- /bench/tpch/100/q20.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q20.bench -------------------------------------------------------------------------------- /bench/tpch/100/q21.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q21.bench -------------------------------------------------------------------------------- /bench/tpch/100/q22.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/100/q22.bench -------------------------------------------------------------------------------- /bench/tpch/50/q01.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q01.bench -------------------------------------------------------------------------------- /bench/tpch/50/q02.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q02.bench -------------------------------------------------------------------------------- /bench/tpch/50/q03.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q03.bench -------------------------------------------------------------------------------- /bench/tpch/50/q04.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q04.bench -------------------------------------------------------------------------------- /bench/tpch/50/q05.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q05.bench -------------------------------------------------------------------------------- /bench/tpch/50/q06.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q06.bench -------------------------------------------------------------------------------- /bench/tpch/50/q07.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q07.bench -------------------------------------------------------------------------------- /bench/tpch/50/q08.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q08.bench -------------------------------------------------------------------------------- /bench/tpch/50/q09.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q09.bench -------------------------------------------------------------------------------- /bench/tpch/50/q10.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q10.bench -------------------------------------------------------------------------------- /bench/tpch/50/q11.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q11.bench -------------------------------------------------------------------------------- /bench/tpch/50/q12.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q12.bench -------------------------------------------------------------------------------- /bench/tpch/50/q13.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q13.bench -------------------------------------------------------------------------------- /bench/tpch/50/q14.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q14.bench -------------------------------------------------------------------------------- /bench/tpch/50/q15.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q15.bench -------------------------------------------------------------------------------- /bench/tpch/50/q16.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q16.bench -------------------------------------------------------------------------------- /bench/tpch/50/q17.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q17.bench -------------------------------------------------------------------------------- /bench/tpch/50/q18.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q18.bench -------------------------------------------------------------------------------- /bench/tpch/50/q19.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q19.bench -------------------------------------------------------------------------------- /bench/tpch/50/q20.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q20.bench -------------------------------------------------------------------------------- /bench/tpch/50/q21.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q21.bench -------------------------------------------------------------------------------- /bench/tpch/50/q22.bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench/tpch/50/q22.bench -------------------------------------------------------------------------------- /bench_bin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench_bin/Cargo.toml -------------------------------------------------------------------------------- /bench_bin/bench_runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/bench_bin/bench_runner.rs -------------------------------------------------------------------------------- /crates/docgen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/docgen/Cargo.toml -------------------------------------------------------------------------------- /crates/docgen/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/docgen/src/file.rs -------------------------------------------------------------------------------- /crates/docgen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/docgen/src/main.rs -------------------------------------------------------------------------------- /crates/docgen/src/markdown_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/docgen/src/markdown_table.rs -------------------------------------------------------------------------------- /crates/docgen/src/section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/docgen/src/section.rs -------------------------------------------------------------------------------- /crates/docgen/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/docgen/src/session.rs -------------------------------------------------------------------------------- /crates/glaredb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb/src/main.rs -------------------------------------------------------------------------------- /crates/glaredb_bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_bench/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_bench/src/benchmark.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_bench/src/benchmark.rs -------------------------------------------------------------------------------- /crates/glaredb_bench/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_bench/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_bench/src/pagecache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_bench/src/pagecache.rs -------------------------------------------------------------------------------- /crates/glaredb_bench/src/runner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_bench/src/runner.rs -------------------------------------------------------------------------------- /crates/glaredb_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_core/src/arrays/batch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/arrays/batch.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/arrays/bitmap/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod view; 2 | -------------------------------------------------------------------------------- /crates/glaredb_core/src/arrays/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/arrays/cache.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/arrays/field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/arrays/field.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/arrays/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/arrays/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/arrays/row/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/arrays/row/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/arrays/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/arrays/string.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/buffer/db_vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/buffer/db_vec.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/buffer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/buffer/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/catalog/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/catalog/create.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/catalog/drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/catalog/drop.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/catalog/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/catalog/entry.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/catalog/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/catalog/memory.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/catalog/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/catalog/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/catalog/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/catalog/system.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/config/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/config/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/config/session.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/engine/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/engine/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/engine/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/engine/session.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/execution/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/execution/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/execution/operators/sort/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod global_sort; 2 | 3 | mod merge_queue; 4 | -------------------------------------------------------------------------------- /crates/glaredb_core/src/explain/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/explain/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/explain/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/explain/node.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/expr/case_expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/expr/case_expr.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/expr/cast_expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/expr/cast_expr.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/expr/is_expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/expr/is_expr.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/expr/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/expr/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/extension/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/extension/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/functions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/functions/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/logical/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/logical/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/optimizer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/optimizer/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/runtime/handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/runtime/handle.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/runtime/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/runtime/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/runtime/system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/runtime/system.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/runtime/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/runtime/time.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/shell/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/shell/debug.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/shell/lineedit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/shell/lineedit.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/shell/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/shell/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/shell/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/shell/raw.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/shell/vt100.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/shell/vt100.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/statistics/hll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/statistics/hll.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/statistics/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/statistics/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/storage/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/storage/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/testutil/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/testutil/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/util/cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/util/cell.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/util/fmt/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod displayable; 2 | -------------------------------------------------------------------------------- /crates/glaredb_core/src/util/future.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/util/future.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/util/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/util/iter.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/util/marker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/util/marker.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/util/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_core/src/util/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_core/src/util/task.rs -------------------------------------------------------------------------------- /crates/glaredb_error/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_error/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_error/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_error/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_csv/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/src/decoder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_csv/src/decoder.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/src/dialect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_csv/src/dialect.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/src/functions/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod read_csv; 2 | -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_csv/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/src/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_csv/src/reader.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_csv/src/schema.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_csv/src/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_csv/src/writer.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_default/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_default/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_ext_default/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_default/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_delta/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_delta/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_ext_delta/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_delta/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_iceberg/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_iceberg/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_ext_iceberg/src/functions/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod metadata; 2 | -------------------------------------------------------------------------------- /crates/glaredb_ext_iceberg/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_iceberg/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_parquet/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_parquet/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_ext_parquet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_parquet/README.md -------------------------------------------------------------------------------- /crates/glaredb_ext_parquet/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_parquet/regen.sh -------------------------------------------------------------------------------- /crates/glaredb_ext_parquet/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_parquet/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_parquet/src/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_parquet/src/page.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_spark/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_spark/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_ext_spark/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_spark/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_ext_tpch_gen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_tpch_gen/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_ext_tpch_gen/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_ext_tpch_gen/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_http/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_http/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/client.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/filesystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/filesystem.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/gcs/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/gcs/list.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/gcs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/gcs/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/handle.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/list.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/s3/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/s3/hex.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/s3/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/s3/list.rs -------------------------------------------------------------------------------- /crates/glaredb_http/src/s3/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_http/src/s3/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/.gitignore -------------------------------------------------------------------------------- /crates/glaredb_node/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_node/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/build.rs -------------------------------------------------------------------------------- /crates/glaredb_node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/package.json -------------------------------------------------------------------------------- /crates/glaredb_node/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/src/errors.rs -------------------------------------------------------------------------------- /crates/glaredb_node/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_node/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/src/session.rs -------------------------------------------------------------------------------- /crates/glaredb_node/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_node/test.js -------------------------------------------------------------------------------- /crates/glaredb_parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/copy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/copy.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/cte.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/cte.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/drop.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/expr.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/from.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/from.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/mod.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/query.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/ast/show.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/ast/show.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/keywords.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/keywords.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/meta.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/parser.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/statement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/statement.rs -------------------------------------------------------------------------------- /crates/glaredb_parser/src/tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_parser/src/tokens.rs -------------------------------------------------------------------------------- /crates/glaredb_proto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_proto/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_proto/proto/array.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_proto/proto/array.proto -------------------------------------------------------------------------------- /crates/glaredb_proto/proto/expr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_proto/proto/expr.proto -------------------------------------------------------------------------------- /crates/glaredb_proto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_proto/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_python/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_python/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_python/README.md: -------------------------------------------------------------------------------- 1 | # GlareDB Python bindings 2 | 3 | Documentation: 4 | -------------------------------------------------------------------------------- /crates/glaredb_python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_python/pyproject.toml -------------------------------------------------------------------------------- /crates/glaredb_python/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_python/src/errors.rs -------------------------------------------------------------------------------- /crates/glaredb_python/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_python/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_python/src/print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_python/src/print.rs -------------------------------------------------------------------------------- /crates/glaredb_python/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_python/src/session.rs -------------------------------------------------------------------------------- /crates/glaredb_rt_native/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_rt_native/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_rt_native/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_rt_native/src/http.rs -------------------------------------------------------------------------------- /crates/glaredb_rt_native/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_rt_native/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_rt_native/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_rt_native/src/time.rs -------------------------------------------------------------------------------- /crates/glaredb_slt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_slt/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_slt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_slt/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/Cargo.toml -------------------------------------------------------------------------------- /crates/glaredb_wasm/README.md: -------------------------------------------------------------------------------- 1 | # GlareDB WebAssembly bindings 2 | 3 | Documentation: 4 | -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/errors.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/http.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/lib.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/runtime.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/session.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/shell.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/time.rs -------------------------------------------------------------------------------- /crates/glaredb_wasm/src/tracing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/glaredb_wasm/src/tracing.rs -------------------------------------------------------------------------------- /crates/harness/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/Cargo.toml -------------------------------------------------------------------------------- /crates/harness/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/README.md -------------------------------------------------------------------------------- /crates/harness/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/args.rs -------------------------------------------------------------------------------- /crates/harness/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/lib.rs -------------------------------------------------------------------------------- /crates/harness/src/printer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/printer.rs -------------------------------------------------------------------------------- /crates/harness/src/sqlfile/find.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/sqlfile/find.rs -------------------------------------------------------------------------------- /crates/harness/src/sqlfile/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/sqlfile/mod.rs -------------------------------------------------------------------------------- /crates/harness/src/sqlfile/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/sqlfile/parser.rs -------------------------------------------------------------------------------- /crates/harness/src/sqlfile/vars.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/sqlfile/vars.rs -------------------------------------------------------------------------------- /crates/harness/src/trial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/harness/src/trial.rs -------------------------------------------------------------------------------- /crates/logutil/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/logutil/Cargo.toml -------------------------------------------------------------------------------- /crates/logutil/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/crates/logutil/src/lib.rs -------------------------------------------------------------------------------- /docs/clients/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/clients/cli.md -------------------------------------------------------------------------------- /docs/clients/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Clients & APIs 3 | order: 15 4 | --- 5 | -------------------------------------------------------------------------------- /docs/clients/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/clients/rust.md -------------------------------------------------------------------------------- /docs/development/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/development/benchmarking.md -------------------------------------------------------------------------------- /docs/development/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/development/building.md -------------------------------------------------------------------------------- /docs/development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/development/index.md -------------------------------------------------------------------------------- /docs/development/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/development/testing.md -------------------------------------------------------------------------------- /docs/get-started/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Get started 3 | order: 10 4 | --- 5 | -------------------------------------------------------------------------------- /docs/get-started/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/get-started/install.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: GlareDB Docs 3 | --- 4 | -------------------------------------------------------------------------------- /docs/integrations/file-formats/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/integrations/file-formats/csv.md -------------------------------------------------------------------------------- /docs/integrations/file-formats/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: File formats 3 | order: 10 4 | --- 5 | -------------------------------------------------------------------------------- /docs/integrations/file-systems/gcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/integrations/file-systems/gcs.md -------------------------------------------------------------------------------- /docs/integrations/file-systems/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/integrations/file-systems/http.md -------------------------------------------------------------------------------- /docs/integrations/file-systems/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: File systems 3 | order: 30 4 | --- 5 | -------------------------------------------------------------------------------- /docs/integrations/file-systems/s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/integrations/file-systems/s3.md -------------------------------------------------------------------------------- /docs/integrations/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Integrations 3 | order: 20 4 | --- 5 | -------------------------------------------------------------------------------- /docs/integrations/tables-and-catalogs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tables & catalogs 3 | order: 20 4 | --- 5 | -------------------------------------------------------------------------------- /docs/sql/commands/create-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/create-schema.md -------------------------------------------------------------------------------- /docs/sql/commands/create-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/create-table.md -------------------------------------------------------------------------------- /docs/sql/commands/create-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/create-view.md -------------------------------------------------------------------------------- /docs/sql/commands/describe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/describe.md -------------------------------------------------------------------------------- /docs/sql/commands/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/drop.md -------------------------------------------------------------------------------- /docs/sql/commands/explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/explain.md -------------------------------------------------------------------------------- /docs/sql/commands/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Commands 3 | order: 15 4 | --- 5 | -------------------------------------------------------------------------------- /docs/sql/commands/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/insert.md -------------------------------------------------------------------------------- /docs/sql/commands/set-reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/commands/set-reset.md -------------------------------------------------------------------------------- /docs/sql/datatypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/datatypes.md -------------------------------------------------------------------------------- /docs/sql/expressions/arithmetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/expressions/arithmetic.md -------------------------------------------------------------------------------- /docs/sql/expressions/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/expressions/comparison.md -------------------------------------------------------------------------------- /docs/sql/expressions/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Expressions 3 | order: 10 4 | --- 5 | -------------------------------------------------------------------------------- /docs/sql/expressions/logical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/expressions/logical.md -------------------------------------------------------------------------------- /docs/sql/expressions/subqueries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/expressions/subqueries.md -------------------------------------------------------------------------------- /docs/sql/functions/aggregate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/aggregate.md -------------------------------------------------------------------------------- /docs/sql/functions/date-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/date-time.md -------------------------------------------------------------------------------- /docs/sql/functions/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Functions 3 | order: 50 4 | --- 5 | -------------------------------------------------------------------------------- /docs/sql/functions/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/list.md -------------------------------------------------------------------------------- /docs/sql/functions/numeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/numeric.md -------------------------------------------------------------------------------- /docs/sql/functions/operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/operator.md -------------------------------------------------------------------------------- /docs/sql/functions/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/regexp.md -------------------------------------------------------------------------------- /docs/sql/functions/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/string.md -------------------------------------------------------------------------------- /docs/sql/functions/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/system.md -------------------------------------------------------------------------------- /docs/sql/functions/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/functions/table.md -------------------------------------------------------------------------------- /docs/sql/identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/identifiers.md -------------------------------------------------------------------------------- /docs/sql/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SQL 3 | order: 40 4 | --- 5 | -------------------------------------------------------------------------------- /docs/sql/query-syntax/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/from.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/group-by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/group-by.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/having.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/having.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Query syntax 3 | order: 5 4 | --- 5 | -------------------------------------------------------------------------------- /docs/sql/query-syntax/limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/limit.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/order-by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/order-by.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/select.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/values.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/where.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/where.md -------------------------------------------------------------------------------- /docs/sql/query-syntax/with.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/docs/sql/query-syntax/with.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/example_basic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/examples/example_basic/Cargo.toml -------------------------------------------------------------------------------- /examples/example_basic/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/examples/example_basic/src/main.rs -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/install.sh -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/assert_cargo_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/assert_cargo_version.sh -------------------------------------------------------------------------------- /scripts/bench_download_tpch_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/bench_download_tpch_data.sh -------------------------------------------------------------------------------- /scripts/bench_gcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/bench_gcp.sh -------------------------------------------------------------------------------- /scripts/ci_publish_crates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/ci_publish_crates.sh -------------------------------------------------------------------------------- /scripts/ci_run_cli_non_interactive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/ci_run_cli_non_interactive.sh -------------------------------------------------------------------------------- /scripts/ci_run_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/ci_run_examples.sh -------------------------------------------------------------------------------- /scripts/ci_run_nodejs_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/ci_run_nodejs_tests.sh -------------------------------------------------------------------------------- /scripts/ci_run_python_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/ci_run_python_tests.sh -------------------------------------------------------------------------------- /scripts/codesign_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/codesign_macos.sh -------------------------------------------------------------------------------- /scripts/create-test-postgres-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/create-test-postgres-db.sh -------------------------------------------------------------------------------- /scripts/format.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -xeuo pipefail 4 | 5 | cargo +nightly fmt 6 | -------------------------------------------------------------------------------- /scripts/notarize_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/notarize_macos.sh -------------------------------------------------------------------------------- /scripts/run_miri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/run_miri.sh -------------------------------------------------------------------------------- /scripts/run_slt_standard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/scripts/run_slt_standard.sh -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q00.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q00.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q01.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q01.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q02.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q02.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q03.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q03.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q04.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q04.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q05.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q05.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q06.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q06.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q07.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q07.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q08.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q08.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q09.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q09.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q10.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q10.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q11.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q11.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q12.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q12.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q13.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q13.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q14.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q14.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q15.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q15.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q16.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q16.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q17.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q17.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q18.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q18.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q19.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q19.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q20.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q20.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q21.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q21.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q22.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q22.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q23.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q23.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q24.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q24.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q25.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q25.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q26.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q26.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q27.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q27.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q28.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q28.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q29.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q29.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q30.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q30.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q31.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q31.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q32.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q32.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q33.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q33.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q34.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q34.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q35.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q35.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q36.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q36.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q37.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q37.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q38.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q38.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q39.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q39.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q40.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q40.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q41.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q41.slt -------------------------------------------------------------------------------- /slt/clickbench/partitioned/q42.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/partitioned/q42.slt -------------------------------------------------------------------------------- /slt/clickbench/single/describe.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/describe.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q00.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q00.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q01.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q01.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q02.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q02.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q03.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q03.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q04.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q04.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q05.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q05.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q06.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q06.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q07.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q07.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q08.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q08.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q09.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q09.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q10.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q10.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q11.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q11.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q12.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q12.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q13.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q13.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q14.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q14.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q15.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q15.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q16.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q16.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q17.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q17.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q18.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q18.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q19.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q19.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q20.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q20.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q21.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q21.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q22.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q22.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q23.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q23.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q24.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q24.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q25.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q25.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q26.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q26.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q27.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q27.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q28.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q28.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q29.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q29.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q30.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q30.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q31.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q31.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q32.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q32.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q33.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q33.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q34.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q34.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q35.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q35.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q36.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q36.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q37.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q37.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q38.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q38.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q39.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q39.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q40.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q40.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q41.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q41.slt -------------------------------------------------------------------------------- /slt/clickbench/single/q42.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/clickbench/single/q42.slt -------------------------------------------------------------------------------- /slt/csv/copy_to.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/copy_to.slt -------------------------------------------------------------------------------- /slt/csv/glob_different_num_columns.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/glob_different_num_columns.slt -------------------------------------------------------------------------------- /slt/csv/glob_numbers.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/glob_numbers.slt -------------------------------------------------------------------------------- /slt/csv/infer/all_null.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/all_null.slt -------------------------------------------------------------------------------- /slt/csv/infer/boolean_values.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/boolean_values.slt -------------------------------------------------------------------------------- /slt/csv/infer/dup_header_name.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/dup_header_name.slt -------------------------------------------------------------------------------- /slt/csv/infer/empty_first_line.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/empty_first_line.slt -------------------------------------------------------------------------------- /slt/csv/infer/empty_header_names.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/empty_header_names.slt -------------------------------------------------------------------------------- /slt/csv/infer/empty_middle_line.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/empty_middle_line.slt -------------------------------------------------------------------------------- /slt/csv/infer/escaped_quotes.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/escaped_quotes.slt -------------------------------------------------------------------------------- /slt/csv/infer/semicolon_delim.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/semicolon_delim.slt -------------------------------------------------------------------------------- /slt/csv/infer/single_quotes.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/single_quotes.slt -------------------------------------------------------------------------------- /slt/csv/infer/special_float_values.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/special_float_values.slt -------------------------------------------------------------------------------- /slt/csv/infer/tab_delim.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/tab_delim.slt -------------------------------------------------------------------------------- /slt/csv/infer/whitespace_handling.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/infer/whitespace_handling.slt -------------------------------------------------------------------------------- /slt/csv/read_file_list.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/read_file_list.slt -------------------------------------------------------------------------------- /slt/csv/read_tsv.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/read_tsv.slt -------------------------------------------------------------------------------- /slt/csv/simple.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/simple.slt -------------------------------------------------------------------------------- /slt/csv/small_batch_size.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/small_batch_size.slt -------------------------------------------------------------------------------- /slt/csv/tpch_small/lineitem.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/tpch_small/lineitem.slt -------------------------------------------------------------------------------- /slt/csv/tpch_small/nation.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/tpch_small/nation.slt -------------------------------------------------------------------------------- /slt/csv/userdata1.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/csv/userdata1.slt -------------------------------------------------------------------------------- /slt/delta/simple.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/delta/simple.slt -------------------------------------------------------------------------------- /slt/gcs/private/errors.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/private/errors.slt -------------------------------------------------------------------------------- /slt/gcs/private/glob.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/private/glob.slt -------------------------------------------------------------------------------- /slt/gcs/private/iceberg_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/private/iceberg_metadata.slt -------------------------------------------------------------------------------- /slt/gcs/private/userdata0.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/private/userdata0.slt -------------------------------------------------------------------------------- /slt/gcs/public/bench_queries_docs.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/public/bench_queries_docs.slt -------------------------------------------------------------------------------- /slt/gcs/public/csv_glob_numbers.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/public/csv_glob_numbers.slt -------------------------------------------------------------------------------- /slt/gcs/public/glob.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/public/glob.slt -------------------------------------------------------------------------------- /slt/gcs/public/iceberg_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/public/iceberg_metadata.slt -------------------------------------------------------------------------------- /slt/gcs/public/iceberg_snapshots.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/public/iceberg_snapshots.slt -------------------------------------------------------------------------------- /slt/gcs/public/read_text.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/public/read_text.slt -------------------------------------------------------------------------------- /slt/gcs/public/userdata0.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/gcs/public/userdata0.slt -------------------------------------------------------------------------------- /slt/http/read_csv_http.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/http/read_csv_http.slt -------------------------------------------------------------------------------- /slt/http/read_parquet_http.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/http/read_parquet_http.slt -------------------------------------------------------------------------------- /slt/http/row_group_metadata_http.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/http/row_group_metadata_http.slt -------------------------------------------------------------------------------- /slt/hybrid/client_only.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/hybrid/client_only.slt -------------------------------------------------------------------------------- /slt/hybrid/copy_to.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/hybrid/copy_to.slt -------------------------------------------------------------------------------- /slt/hybrid/create_temp_table_as.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/hybrid/create_temp_table_as.slt -------------------------------------------------------------------------------- /slt/hybrid/insert_into.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/hybrid/insert_into.slt -------------------------------------------------------------------------------- /slt/hybrid/remote_attach.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/hybrid/remote_attach.slt -------------------------------------------------------------------------------- /slt/iceberg/iceberg_data_files.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/iceberg/iceberg_data_files.slt -------------------------------------------------------------------------------- /slt/iceberg/iceberg_manifest_list.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/iceberg/iceberg_manifest_list.slt -------------------------------------------------------------------------------- /slt/iceberg/iceberg_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/iceberg/iceberg_metadata.slt -------------------------------------------------------------------------------- /slt/iceberg/iceberg_snapshots.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/iceberg/iceberg_snapshots.slt -------------------------------------------------------------------------------- /slt/parquet/binary_rle_dict_defs.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/binary_rle_dict_defs.slt -------------------------------------------------------------------------------- /slt/parquet/capital_column_names.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/capital_column_names.slt -------------------------------------------------------------------------------- /slt/parquet/column_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/column_metadata.slt -------------------------------------------------------------------------------- /slt/parquet/copy_to.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/copy_to.slt -------------------------------------------------------------------------------- /slt/parquet/describe.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/describe.slt -------------------------------------------------------------------------------- /slt/parquet/file_infer.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/file_infer.slt -------------------------------------------------------------------------------- /slt/parquet/file_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/file_metadata.slt -------------------------------------------------------------------------------- /slt/parquet/glob_numbers.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/glob_numbers.slt -------------------------------------------------------------------------------- /slt/parquet/parquet-testing/binary.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/parquet-testing/binary.slt -------------------------------------------------------------------------------- /slt/parquet/parquet_testing.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/parquet_testing.slt -------------------------------------------------------------------------------- /slt/parquet/read_file_list.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/read_file_list.slt -------------------------------------------------------------------------------- /slt/parquet/read_parquet_local.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/read_parquet_local.slt -------------------------------------------------------------------------------- /slt/parquet/rowgroup_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/rowgroup_metadata.slt -------------------------------------------------------------------------------- /slt/parquet/small_batch_size.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/small_batch_size.slt -------------------------------------------------------------------------------- /slt/parquet/ts_millis_i64.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/ts_millis_i64.slt -------------------------------------------------------------------------------- /slt/parquet/userdata0.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/parquet/userdata0.slt -------------------------------------------------------------------------------- /slt/postgres/attach.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/postgres/attach.slt -------------------------------------------------------------------------------- /slt/postgres/read_postgres.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/postgres/read_postgres.slt -------------------------------------------------------------------------------- /slt/s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/README.md -------------------------------------------------------------------------------- /slt/s3/private/csv_simple.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/private/csv_simple.slt -------------------------------------------------------------------------------- /slt/s3/private/glob.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/private/glob.slt -------------------------------------------------------------------------------- /slt/s3/private/iceberg_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/private/iceberg_metadata.slt -------------------------------------------------------------------------------- /slt/s3/private/parquet_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/private/parquet_metadata.slt -------------------------------------------------------------------------------- /slt/s3/private/userdata0.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/private/userdata0.slt -------------------------------------------------------------------------------- /slt/s3/public/csv_glob_numbers.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/csv_glob_numbers.slt -------------------------------------------------------------------------------- /slt/s3/public/csv_simple.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/csv_simple.slt -------------------------------------------------------------------------------- /slt/s3/public/different_region.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/different_region.slt -------------------------------------------------------------------------------- /slt/s3/public/file_infer.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/file_infer.slt -------------------------------------------------------------------------------- /slt/s3/public/glob.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/glob.slt -------------------------------------------------------------------------------- /slt/s3/public/iceberg_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/iceberg_metadata.slt -------------------------------------------------------------------------------- /slt/s3/public/iceberg_snapshots.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/iceberg_snapshots.slt -------------------------------------------------------------------------------- /slt/s3/public/parquet_glob_numbers.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/parquet_glob_numbers.slt -------------------------------------------------------------------------------- /slt/s3/public/parquet_metadata.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/parquet_metadata.slt -------------------------------------------------------------------------------- /slt/s3/public/parquet_metadata_eu.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/parquet_metadata_eu.slt -------------------------------------------------------------------------------- /slt/s3/public/read_text.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/read_text.slt -------------------------------------------------------------------------------- /slt/s3/public/userdata0.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/s3/public/userdata0.slt -------------------------------------------------------------------------------- /slt/standard/aggregates/basic.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/aggregates/basic.slt -------------------------------------------------------------------------------- /slt/standard/aggregates/grouping.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/aggregates/grouping.slt -------------------------------------------------------------------------------- /slt/standard/aggregates/having.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/aggregates/having.slt -------------------------------------------------------------------------------- /slt/standard/attach/memory.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/attach/memory.slt -------------------------------------------------------------------------------- /slt/standard/cast/binary.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/binary.slt -------------------------------------------------------------------------------- /slt/standard/cast/cast_overflow.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/cast_overflow.slt -------------------------------------------------------------------------------- /slt/standard/cast/date.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/date.slt -------------------------------------------------------------------------------- /slt/standard/cast/decimal.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/decimal.slt -------------------------------------------------------------------------------- /slt/standard/cast/f16.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/f16.slt -------------------------------------------------------------------------------- /slt/standard/cast/integer_minmax.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/integer_minmax.slt -------------------------------------------------------------------------------- /slt/standard/cast/interval.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/interval.slt -------------------------------------------------------------------------------- /slt/standard/cast/nested_casts.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/nested_casts.slt -------------------------------------------------------------------------------- /slt/standard/cast/string_cast.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/string_cast.slt -------------------------------------------------------------------------------- /slt/standard/cast/typed_string.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/typed_string.slt -------------------------------------------------------------------------------- /slt/standard/cast/unsigned_int.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cast/unsigned_int.slt -------------------------------------------------------------------------------- /slt/standard/comments.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/comments.slt -------------------------------------------------------------------------------- /slt/standard/cte/cte.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cte/cte.slt -------------------------------------------------------------------------------- /slt/standard/cte/insert_cte.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cte/insert_cte.slt -------------------------------------------------------------------------------- /slt/standard/cte/materialized_cte.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/cte/materialized_cte.slt -------------------------------------------------------------------------------- /slt/standard/discard.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/discard.slt -------------------------------------------------------------------------------- /slt/standard/equality_join.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/equality_join.slt -------------------------------------------------------------------------------- /slt/standard/explain.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/explain.slt -------------------------------------------------------------------------------- /slt/standard/filter/constant.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/filter/constant.slt -------------------------------------------------------------------------------- /slt/standard/functions/chaining.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/chaining.slt -------------------------------------------------------------------------------- /slt/standard/functions/qualified.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/qualified.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/ceil.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/ceil.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/gcd.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/gcd.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/lcm.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/lcm.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/like.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/like.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/not.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/not.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/pi.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/pi.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/sign.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/sign.slt -------------------------------------------------------------------------------- /slt/standard/functions/scalar/xor.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/scalar/xor.slt -------------------------------------------------------------------------------- /slt/standard/functions/string/md5.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/string/md5.slt -------------------------------------------------------------------------------- /slt/standard/functions/table/glob.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/functions/table/glob.slt -------------------------------------------------------------------------------- /slt/standard/insert/insert_cast.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/insert/insert_cast.slt -------------------------------------------------------------------------------- /slt/standard/insert/insert_count.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/insert/insert_count.slt -------------------------------------------------------------------------------- /slt/standard/insert/insert_invalid.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/insert/insert_invalid.slt -------------------------------------------------------------------------------- /slt/standard/join/cross_join.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/cross_join.slt -------------------------------------------------------------------------------- /slt/standard/join/inner_join.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/inner_join.slt -------------------------------------------------------------------------------- /slt/standard/join/inner_join_using.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/inner_join_using.slt -------------------------------------------------------------------------------- /slt/standard/join/join_empty.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/join_empty.slt -------------------------------------------------------------------------------- /slt/standard/join/lateral_join.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/lateral_join.slt -------------------------------------------------------------------------------- /slt/standard/join/left_outer.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/left_outer.slt -------------------------------------------------------------------------------- /slt/standard/join/left_outer_using.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/left_outer_using.slt -------------------------------------------------------------------------------- /slt/standard/join/natural_join.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/natural_join.slt -------------------------------------------------------------------------------- /slt/standard/join/right_outer.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/right_outer.slt -------------------------------------------------------------------------------- /slt/standard/join/semi_join.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/semi_join.slt -------------------------------------------------------------------------------- /slt/standard/join/system_join.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/join/system_join.slt -------------------------------------------------------------------------------- /slt/standard/limit/basic.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/limit/basic.slt -------------------------------------------------------------------------------- /slt/standard/limit/global_limit.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/limit/global_limit.slt -------------------------------------------------------------------------------- /slt/standard/limit/limit_union.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/limit/limit_union.slt -------------------------------------------------------------------------------- /slt/standard/optimizer/cse.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/optimizer/cse.slt -------------------------------------------------------------------------------- /slt/standard/order/basic.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/order/basic.slt -------------------------------------------------------------------------------- /slt/standard/order/order_by_alias.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/order/order_by_alias.slt -------------------------------------------------------------------------------- /slt/standard/order/order_by_large.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/order/order_by_large.slt -------------------------------------------------------------------------------- /slt/standard/order/order_by_many.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/order/order_by_many.slt -------------------------------------------------------------------------------- /slt/standard/order/order_by_nulls.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/order/order_by_nulls.slt -------------------------------------------------------------------------------- /slt/standard/order/order_group.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/order/order_group.slt -------------------------------------------------------------------------------- /slt/standard/order/order_union.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/order/order_union.slt -------------------------------------------------------------------------------- /slt/standard/select/columns.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/select/columns.slt -------------------------------------------------------------------------------- /slt/standard/select/distinct.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/select/distinct.slt -------------------------------------------------------------------------------- /slt/standard/select/exclude_except.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/select/exclude_except.slt -------------------------------------------------------------------------------- /slt/standard/select/from_missing.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/select/from_missing.slt -------------------------------------------------------------------------------- /slt/standard/select/replace.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/select/replace.slt -------------------------------------------------------------------------------- /slt/standard/select/unnest.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/select/unnest.slt -------------------------------------------------------------------------------- /slt/standard/setops/union.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/setops/union.slt -------------------------------------------------------------------------------- /slt/standard/setops/union_distinct.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/setops/union_distinct.slt -------------------------------------------------------------------------------- /slt/standard/show/show_databases.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/show/show_databases.slt -------------------------------------------------------------------------------- /slt/standard/show/show_schemas.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/show/show_schemas.slt -------------------------------------------------------------------------------- /slt/standard/show/show_tables.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/show/show_tables.slt -------------------------------------------------------------------------------- /slt/standard/simple.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/simple.slt -------------------------------------------------------------------------------- /slt/standard/subqueries/any_all.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/subqueries/any_all.slt -------------------------------------------------------------------------------- /slt/standard/subqueries/in.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/subqueries/in.slt -------------------------------------------------------------------------------- /slt/standard/subqueries/neumann.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/subqueries/neumann.slt -------------------------------------------------------------------------------- /slt/standard/time/date_arith.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/time/date_arith.slt -------------------------------------------------------------------------------- /slt/standard/time/date_cmp.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/time/date_cmp.slt -------------------------------------------------------------------------------- /slt/standard/time/interval_arith.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/time/interval_arith.slt -------------------------------------------------------------------------------- /slt/standard/values/implicit_cast.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/values/implicit_cast.slt -------------------------------------------------------------------------------- /slt/standard/values/lateral_values.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/values/lateral_values.slt -------------------------------------------------------------------------------- /slt/standard/values/num_columns.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/values/num_columns.slt -------------------------------------------------------------------------------- /slt/standard/values/values_aliases.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/values/values_aliases.slt -------------------------------------------------------------------------------- /slt/standard/vars/reset.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/vars/reset.slt -------------------------------------------------------------------------------- /slt/standard/vars/set_batch_size.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/vars/set_batch_size.slt -------------------------------------------------------------------------------- /slt/standard/vars/set_partitions.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/vars/set_partitions.slt -------------------------------------------------------------------------------- /slt/standard/vars/set_var.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/vars/set_var.slt -------------------------------------------------------------------------------- /slt/standard/views/create_view.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/views/create_view.slt -------------------------------------------------------------------------------- /slt/standard/views/temp_view.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/views/temp_view.slt -------------------------------------------------------------------------------- /slt/standard/window/basic.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/standard/window/basic.slt -------------------------------------------------------------------------------- /slt/tpcds/describe_files.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/describe_files.slt -------------------------------------------------------------------------------- /slt/tpcds/q01.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q01.slt -------------------------------------------------------------------------------- /slt/tpcds/q02.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q02.slt -------------------------------------------------------------------------------- /slt/tpcds/q03.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q03.slt -------------------------------------------------------------------------------- /slt/tpcds/q04.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q04.slt -------------------------------------------------------------------------------- /slt/tpcds/q05.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q05.slt -------------------------------------------------------------------------------- /slt/tpcds/q06.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q06.slt -------------------------------------------------------------------------------- /slt/tpcds/q07.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q07.slt -------------------------------------------------------------------------------- /slt/tpcds/q08.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q08.slt -------------------------------------------------------------------------------- /slt/tpcds/q09.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q09.slt -------------------------------------------------------------------------------- /slt/tpcds/q10.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q10.slt -------------------------------------------------------------------------------- /slt/tpcds/q11.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q11.slt -------------------------------------------------------------------------------- /slt/tpcds/q12.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q12.slt -------------------------------------------------------------------------------- /slt/tpcds/q13.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q13.slt -------------------------------------------------------------------------------- /slt/tpcds/q14.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q14.slt -------------------------------------------------------------------------------- /slt/tpcds/q15.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q15.slt -------------------------------------------------------------------------------- /slt/tpcds/q16.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q16.slt -------------------------------------------------------------------------------- /slt/tpcds/q17.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q17.slt -------------------------------------------------------------------------------- /slt/tpcds/q18.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q18.slt -------------------------------------------------------------------------------- /slt/tpcds/q19.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q19.slt -------------------------------------------------------------------------------- /slt/tpcds/q20.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q20.slt -------------------------------------------------------------------------------- /slt/tpcds/q21.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q21.slt -------------------------------------------------------------------------------- /slt/tpcds/q22.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q22.slt -------------------------------------------------------------------------------- /slt/tpcds/q23.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q23.slt -------------------------------------------------------------------------------- /slt/tpcds/q24.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q24.slt -------------------------------------------------------------------------------- /slt/tpcds/q25.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q25.slt -------------------------------------------------------------------------------- /slt/tpcds/q26.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q26.slt -------------------------------------------------------------------------------- /slt/tpcds/q27.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q27.slt -------------------------------------------------------------------------------- /slt/tpcds/q28.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q28.slt -------------------------------------------------------------------------------- /slt/tpcds/q29.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q29.slt -------------------------------------------------------------------------------- /slt/tpcds/q30.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q30.slt -------------------------------------------------------------------------------- /slt/tpcds/q31.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q31.slt -------------------------------------------------------------------------------- /slt/tpcds/q32.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q32.slt -------------------------------------------------------------------------------- /slt/tpcds/q33.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q33.slt -------------------------------------------------------------------------------- /slt/tpcds/q34.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q34.slt -------------------------------------------------------------------------------- /slt/tpcds/q35.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q35.slt -------------------------------------------------------------------------------- /slt/tpcds/q36.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q36.slt -------------------------------------------------------------------------------- /slt/tpcds/q37.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q37.slt -------------------------------------------------------------------------------- /slt/tpcds/q38.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q38.slt -------------------------------------------------------------------------------- /slt/tpcds/q39.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q39.slt -------------------------------------------------------------------------------- /slt/tpcds/q40.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q40.slt -------------------------------------------------------------------------------- /slt/tpcds/q41.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q41.slt -------------------------------------------------------------------------------- /slt/tpcds/q42.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q42.slt -------------------------------------------------------------------------------- /slt/tpcds/q43.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q43.slt -------------------------------------------------------------------------------- /slt/tpcds/q44.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q44.slt -------------------------------------------------------------------------------- /slt/tpcds/q45.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q45.slt -------------------------------------------------------------------------------- /slt/tpcds/q46.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q46.slt -------------------------------------------------------------------------------- /slt/tpcds/q47.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q47.slt -------------------------------------------------------------------------------- /slt/tpcds/q48.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q48.slt -------------------------------------------------------------------------------- /slt/tpcds/q49.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q49.slt -------------------------------------------------------------------------------- /slt/tpcds/q50.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q50.slt -------------------------------------------------------------------------------- /slt/tpcds/q51.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q51.slt -------------------------------------------------------------------------------- /slt/tpcds/q52.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q52.slt -------------------------------------------------------------------------------- /slt/tpcds/q53.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q53.slt -------------------------------------------------------------------------------- /slt/tpcds/q54.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q54.slt -------------------------------------------------------------------------------- /slt/tpcds/q55.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q55.slt -------------------------------------------------------------------------------- /slt/tpcds/q56.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q56.slt -------------------------------------------------------------------------------- /slt/tpcds/q57.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q57.slt -------------------------------------------------------------------------------- /slt/tpcds/q58.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q58.slt -------------------------------------------------------------------------------- /slt/tpcds/q59.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q59.slt -------------------------------------------------------------------------------- /slt/tpcds/q60.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q60.slt -------------------------------------------------------------------------------- /slt/tpcds/q61.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q61.slt -------------------------------------------------------------------------------- /slt/tpcds/q62.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q62.slt -------------------------------------------------------------------------------- /slt/tpcds/q63.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q63.slt -------------------------------------------------------------------------------- /slt/tpcds/q64.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q64.slt -------------------------------------------------------------------------------- /slt/tpcds/q65.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q65.slt -------------------------------------------------------------------------------- /slt/tpcds/q66.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q66.slt -------------------------------------------------------------------------------- /slt/tpcds/q67.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q67.slt -------------------------------------------------------------------------------- /slt/tpcds/q68.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q68.slt -------------------------------------------------------------------------------- /slt/tpcds/q69.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q69.slt -------------------------------------------------------------------------------- /slt/tpcds/q70.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q70.slt -------------------------------------------------------------------------------- /slt/tpcds/q71.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q71.slt -------------------------------------------------------------------------------- /slt/tpcds/q72.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q72.slt -------------------------------------------------------------------------------- /slt/tpcds/q73.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q73.slt -------------------------------------------------------------------------------- /slt/tpcds/q74.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q74.slt -------------------------------------------------------------------------------- /slt/tpcds/q75.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q75.slt -------------------------------------------------------------------------------- /slt/tpcds/q76.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q76.slt -------------------------------------------------------------------------------- /slt/tpcds/q77.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q77.slt -------------------------------------------------------------------------------- /slt/tpcds/q78.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q78.slt -------------------------------------------------------------------------------- /slt/tpcds/q79.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q79.slt -------------------------------------------------------------------------------- /slt/tpcds/q80.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q80.slt -------------------------------------------------------------------------------- /slt/tpcds/q81.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q81.slt -------------------------------------------------------------------------------- /slt/tpcds/q82.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q82.slt -------------------------------------------------------------------------------- /slt/tpcds/q83.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q83.slt -------------------------------------------------------------------------------- /slt/tpcds/q84.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q84.slt -------------------------------------------------------------------------------- /slt/tpcds/q85.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q85.slt -------------------------------------------------------------------------------- /slt/tpcds/q86.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q86.slt -------------------------------------------------------------------------------- /slt/tpcds/q87.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q87.slt -------------------------------------------------------------------------------- /slt/tpcds/q88.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q88.slt -------------------------------------------------------------------------------- /slt/tpcds/q89.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q89.slt -------------------------------------------------------------------------------- /slt/tpcds/q90.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q90.slt -------------------------------------------------------------------------------- /slt/tpcds/q91.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q91.slt -------------------------------------------------------------------------------- /slt/tpcds/q92.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q92.slt -------------------------------------------------------------------------------- /slt/tpcds/q93.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q93.slt -------------------------------------------------------------------------------- /slt/tpcds/q94.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q94.slt -------------------------------------------------------------------------------- /slt/tpcds/q95.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q95.slt -------------------------------------------------------------------------------- /slt/tpcds/q96.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q96.slt -------------------------------------------------------------------------------- /slt/tpcds/q97.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q97.slt -------------------------------------------------------------------------------- /slt/tpcds/q98.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q98.slt -------------------------------------------------------------------------------- /slt/tpcds/q99.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpcds/q99.slt -------------------------------------------------------------------------------- /slt/tpch_gen/describe.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpch_gen/describe.slt -------------------------------------------------------------------------------- /slt/tpch_gen/linitem.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpch_gen/linitem.slt -------------------------------------------------------------------------------- /slt/tpch_gen/orders.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpch_gen/orders.slt -------------------------------------------------------------------------------- /slt/tpch_gen/region.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpch_gen/region.slt -------------------------------------------------------------------------------- /slt/tpchbench/describe.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/describe.slt -------------------------------------------------------------------------------- /slt/tpchbench/q01.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q01.slt -------------------------------------------------------------------------------- /slt/tpchbench/q02.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q02.slt -------------------------------------------------------------------------------- /slt/tpchbench/q03.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q03.slt -------------------------------------------------------------------------------- /slt/tpchbench/q04.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q04.slt -------------------------------------------------------------------------------- /slt/tpchbench/q05.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q05.slt -------------------------------------------------------------------------------- /slt/tpchbench/q06.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q06.slt -------------------------------------------------------------------------------- /slt/tpchbench/q07.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q07.slt -------------------------------------------------------------------------------- /slt/tpchbench/q08.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q08.slt -------------------------------------------------------------------------------- /slt/tpchbench/q09.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q09.slt -------------------------------------------------------------------------------- /slt/tpchbench/q10.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q10.slt -------------------------------------------------------------------------------- /slt/tpchbench/q11.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q11.slt -------------------------------------------------------------------------------- /slt/tpchbench/q12.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q12.slt -------------------------------------------------------------------------------- /slt/tpchbench/q13.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q13.slt -------------------------------------------------------------------------------- /slt/tpchbench/q14.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q14.slt -------------------------------------------------------------------------------- /slt/tpchbench/q15.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q15.slt -------------------------------------------------------------------------------- /slt/tpchbench/q16.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q16.slt -------------------------------------------------------------------------------- /slt/tpchbench/q17.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q17.slt -------------------------------------------------------------------------------- /slt/tpchbench/q18.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q18.slt -------------------------------------------------------------------------------- /slt/tpchbench/q19.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q19.slt -------------------------------------------------------------------------------- /slt/tpchbench/q20.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q20.slt -------------------------------------------------------------------------------- /slt/tpchbench/q21.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q21.slt -------------------------------------------------------------------------------- /slt/tpchbench/q22.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/tpchbench/q22.slt -------------------------------------------------------------------------------- /slt/unity_catalog/attach.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/unity_catalog/attach.slt -------------------------------------------------------------------------------- /slt/unity_catalog/list_schemas.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/unity_catalog/list_schemas.slt -------------------------------------------------------------------------------- /slt/unity_catalog/list_tables.slt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/slt/unity_catalog/list_tables.slt -------------------------------------------------------------------------------- /submodules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/submodules/README.md -------------------------------------------------------------------------------- /test_bin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/test_bin/Cargo.toml -------------------------------------------------------------------------------- /test_bin/integration_slt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/test_bin/integration_slt.rs -------------------------------------------------------------------------------- /testdata/cli/create_view_v1.sql: -------------------------------------------------------------------------------- 1 | CREATE TEMP VIEW v1 2 | AS SELECT * FROM generate_series(1, 5) g(a); 3 | -------------------------------------------------------------------------------- /testdata/cli/query_view_v1.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM v1; 2 | -------------------------------------------------------------------------------- /testdata/csv/all_null_with_header.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/all_null_with_header.csv -------------------------------------------------------------------------------- /testdata/csv/boolean_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/boolean_values.csv -------------------------------------------------------------------------------- /testdata/csv/dup_header_name.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/dup_header_name.csv -------------------------------------------------------------------------------- /testdata/csv/empty_first_line.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/empty_first_line.csv -------------------------------------------------------------------------------- /testdata/csv/empty_header_names.csv: -------------------------------------------------------------------------------- 1 | ,, 2 | 1,mario,4 3 | 2,peach,8 4 | 3,luigi,12 5 | -------------------------------------------------------------------------------- /testdata/csv/empty_middle_line.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/empty_middle_line.csv -------------------------------------------------------------------------------- /testdata/csv/escaped_quotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/escaped_quotes.csv -------------------------------------------------------------------------------- /testdata/csv/glob_num_cols/2_cols.csv: -------------------------------------------------------------------------------- 1 | food,count 2 | pasta,4 3 | apples,3 4 | salsa,2 5 | charcuterie board,8 6 | -------------------------------------------------------------------------------- /testdata/csv/glob_num_cols/3_cols.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/glob_num_cols/3_cols.csv -------------------------------------------------------------------------------- /testdata/csv/glob_numbers/100.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/glob_numbers/100.csv -------------------------------------------------------------------------------- /testdata/csv/glob_numbers/200.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/glob_numbers/200.csv -------------------------------------------------------------------------------- /testdata/csv/glob_numbers/300.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/glob_numbers/300.csv -------------------------------------------------------------------------------- /testdata/csv/glob_numbers/400.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/glob_numbers/400.csv -------------------------------------------------------------------------------- /testdata/csv/glob_numbers/500.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/glob_numbers/500.csv -------------------------------------------------------------------------------- /testdata/csv/glob_numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/glob_numbers/README.md -------------------------------------------------------------------------------- /testdata/csv/mixed_type_pipe_delim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/mixed_type_pipe_delim.csv -------------------------------------------------------------------------------- /testdata/csv/semicolon_delim.csv: -------------------------------------------------------------------------------- 1 | apple;1;3.14 2 | banana;2;6.28 3 | cherry;3;9.42 4 | -------------------------------------------------------------------------------- /testdata/csv/simple.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/simple.csv -------------------------------------------------------------------------------- /testdata/csv/single_quotes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/single_quotes.csv -------------------------------------------------------------------------------- /testdata/csv/special_float_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/special_float_values.csv -------------------------------------------------------------------------------- /testdata/csv/string_lit_int.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/string_lit_int.csv -------------------------------------------------------------------------------- /testdata/csv/tab_delim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tab_delim.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/customer.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/customer.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/lineitem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/lineitem.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/nation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/nation.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/orders.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/part.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/part.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/partsupp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/partsupp.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/region.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/region.csv -------------------------------------------------------------------------------- /testdata/csv/tpch_small/supplier.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tpch_small/supplier.csv -------------------------------------------------------------------------------- /testdata/csv/tsv_small.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/tsv_small.tsv -------------------------------------------------------------------------------- /testdata/csv/userdata1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/userdata1.csv -------------------------------------------------------------------------------- /testdata/csv/whitespace_handling.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/csv/whitespace_handling.csv -------------------------------------------------------------------------------- /testdata/iceberg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/iceberg/README.md -------------------------------------------------------------------------------- /testdata/iceberg/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/iceberg/generate.py -------------------------------------------------------------------------------- /testdata/iceberg/tables-v1/lineitem_partitioned/metadata/version-hint.text: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /testdata/iceberg/tables-v1/lineitem_simple/metadata/version-hint.text: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /testdata/iceberg/tables-v1/lineitem_versioned/metadata/.version-hint.text.crc: -------------------------------------------------------------------------------- 1 | crcվ -------------------------------------------------------------------------------- /testdata/iceberg/tables-v1/lineitem_versioned/metadata/version-hint.text: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /testdata/iceberg/tables-v2/lineitem_partitioned/metadata/version-hint.text: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /testdata/iceberg/tables-v2/lineitem_simple/metadata/version-hint.text: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /testdata/iceberg/tables-v2/lineitem_versioned/metadata/.version-hint.text.crc: -------------------------------------------------------------------------------- 1 | crcվ -------------------------------------------------------------------------------- /testdata/iceberg/tables-v2/lineitem_versioned/metadata/version-hint.text: -------------------------------------------------------------------------------- 1 | 2 -------------------------------------------------------------------------------- /testdata/iceberg/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/iceberg/tables.py -------------------------------------------------------------------------------- /testdata/parquet/small.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/parquet/small.parquet -------------------------------------------------------------------------------- /testdata/parquet/ts_millis_i64.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/parquet/ts_millis_i64.parquet -------------------------------------------------------------------------------- /testdata/parquet/userdata0.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GlareDB/glaredb/HEAD/testdata/parquet/userdata0.parquet -------------------------------------------------------------------------------- /testdata/text/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/text/glob_simple/aaa.txt: -------------------------------------------------------------------------------- 1 | aaa -------------------------------------------------------------------------------- /testdata/text/glob_simple/aab.txt: -------------------------------------------------------------------------------- 1 | aab -------------------------------------------------------------------------------- /testdata/text/glob_simple/bbb.txt: -------------------------------------------------------------------------------- 1 | bbb -------------------------------------------------------------------------------- /testdata/text/glob_simple/cbb.txt: -------------------------------------------------------------------------------- 1 | cbb -------------------------------------------------------------------------------- /testdata/text/glob_simple/ccc.txt: -------------------------------------------------------------------------------- 1 | ccc -------------------------------------------------------------------------------- /testdata/text/same_content_different_name/1.txt: -------------------------------------------------------------------------------- 1 | cbb -------------------------------------------------------------------------------- /testdata/text/same_content_different_name/2.txt: -------------------------------------------------------------------------------- 1 | cbb --------------------------------------------------------------------------------