@slexisvn/query-engine 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. package/dist/binder/binder.d.ts +130 -0
  2. package/dist/binder/expression-binder.d.ts +168 -0
  3. package/dist/binder/scope.d.ts +40 -0
  4. package/dist/browser.d.ts +8 -0
  5. package/dist/catalog/catalog.d.ts +53 -0
  6. package/dist/catalog/function-registry.d.ts +26 -0
  7. package/dist/catalog/statistics-cache.d.ts +39 -0
  8. package/dist/catalog/statistics.d.ts +72 -0
  9. package/dist/catalog/tpch-schema.d.ts +15 -0
  10. package/dist/cli/cli-common.d.ts +11 -0
  11. package/dist/cli/coordinator.d.ts +1 -0
  12. package/dist/cli/format.d.ts +8 -0
  13. package/dist/cli/index.d.ts +1 -0
  14. package/dist/cli/loaders/csv-loader.d.ts +17 -0
  15. package/dist/cli/loaders/data-loader.d.ts +7 -0
  16. package/dist/cli/loaders/json-loader.d.ts +13 -0
  17. package/dist/cli/loaders/loader-factory.d.ts +4 -0
  18. package/dist/cli/repl.d.ts +6 -0
  19. package/dist/cli/worker.d.ts +1 -0
  20. package/dist/config.d.ts +42 -0
  21. package/dist/core.wasm +0 -0
  22. package/dist/dataframe/column-expr.d.ts +67 -0
  23. package/dist/dataframe/dataframe.d.ts +96 -0
  24. package/dist/dataframe/expr-types.d.ts +6 -0
  25. package/dist/dataframe/in-memory-relation.d.ts +31 -0
  26. package/dist/dataframe/index.d.ts +4 -0
  27. package/dist/dataframe/schema.d.ts +35 -0
  28. package/dist/dataframe/sql-expr-binder.d.ts +17 -0
  29. package/dist/dataframe/type-inference.d.ts +8 -0
  30. package/dist/distributed/cluster/cluster-manager.d.ts +54 -0
  31. package/dist/distributed/cluster/heartbeat-monitor.d.ts +27 -0
  32. package/dist/distributed/cluster/node-descriptor.d.ts +41 -0
  33. package/dist/distributed/distributed-types.d.ts +336 -0
  34. package/dist/distributed/execution/coordinator.d.ts +53 -0
  35. package/dist/distributed/execution/exchange-operator.d.ts +44 -0
  36. package/dist/distributed/execution/fragment-executor.d.ts +48 -0
  37. package/dist/distributed/execution/merge-exchange.d.ts +55 -0
  38. package/dist/distributed/optimizer/distributed-sort.d.ts +6 -0
  39. package/dist/distributed/optimizer/distribution-aware-join.d.ts +28 -0
  40. package/dist/distributed/optimizer/partial-aggregate.d.ts +9 -0
  41. package/dist/distributed/partition/partition-map.d.ts +27 -0
  42. package/dist/distributed/partition/partition-pruner.d.ts +33 -0
  43. package/dist/distributed/partition/partition-strategy.d.ts +43 -0
  44. package/dist/distributed/planner/distributed-planner.d.ts +71 -0
  45. package/dist/distributed/planner/exchange-placement.d.ts +19 -0
  46. package/dist/distributed/planner/expr-utils.d.ts +2 -0
  47. package/dist/distributed/planner/fragment.d.ts +47 -0
  48. package/dist/distributed/transport/chunk-codec.d.ts +18 -0
  49. package/dist/distributed/transport/http-transport.d.ts +49 -0
  50. package/dist/distributed/transport/transport.d.ts +13 -0
  51. package/dist/engine/query-engine.d.ts +142 -0
  52. package/dist/engine-entry.d.ts +12 -0
  53. package/dist/execution/builders/aggregate-builder.d.ts +46 -0
  54. package/dist/execution/builders/builder-utils.d.ts +5 -0
  55. package/dist/execution/builders/cte-builders.d.ts +20 -0
  56. package/dist/execution/builders/exchange-builders.d.ts +33 -0
  57. package/dist/execution/builders/join-builder.d.ts +67 -0
  58. package/dist/execution/builders/pipeline-builders.d.ts +30 -0
  59. package/dist/execution/builders/source-builders.d.ts +23 -0
  60. package/dist/execution/column-resolve.d.ts +7 -0
  61. package/dist/execution/execution-types.d.ts +33 -0
  62. package/dist/execution/expression-eval.d.ts +13 -0
  63. package/dist/execution/fragment-spec.d.ts +125 -0
  64. package/dist/execution/join-utils.d.ts +14 -0
  65. package/dist/execution/operator-registry.d.ts +9 -0
  66. package/dist/execution/operators/agg-wasm.d.ts +16 -0
  67. package/dist/execution/operators/dedup-core.d.ts +10 -0
  68. package/dist/execution/operators/dependent-join.d.ts +14 -0
  69. package/dist/execution/operators/distinct.d.ts +12 -0
  70. package/dist/execution/operators/filter.d.ts +87 -0
  71. package/dist/execution/operators/hash-aggregate.d.ts +121 -0
  72. package/dist/execution/operators/hash-join.d.ts +74 -0
  73. package/dist/execution/operators/index-scan.d.ts +34 -0
  74. package/dist/execution/operators/join-core.d.ts +47 -0
  75. package/dist/execution/operators/merge-join.d.ts +38 -0
  76. package/dist/execution/operators/nested-loop-join.d.ts +28 -0
  77. package/dist/execution/operators/projection.d.ts +20 -0
  78. package/dist/execution/operators/scan.d.ts +17 -0
  79. package/dist/execution/operators/sort.d.ts +48 -0
  80. package/dist/execution/operators/stream-aggregate.d.ts +30 -0
  81. package/dist/execution/operators/union.d.ts +13 -0
  82. package/dist/execution/operators/vector-aggregate.d.ts +73 -0
  83. package/dist/execution/operators/window.d.ts +22 -0
  84. package/dist/execution/physical-plan.d.ts +14 -0
  85. package/dist/execution/pipeline.d.ts +28 -0
  86. package/dist/execution/query-executor.d.ts +70 -0
  87. package/dist/execution/query-result.d.ts +15 -0
  88. package/dist/execution/result-sink.d.ts +26 -0
  89. package/dist/execution/scheduler.d.ts +8 -0
  90. package/dist/execution/vector-ops.d.ts +32 -0
  91. package/dist/execution/wasm-expr-eval.d.ts +7 -0
  92. package/dist/index.browser.js +17999 -0
  93. package/dist/index.cli.js +1002 -0
  94. package/dist/index.d.ts +20 -0
  95. package/dist/index.node.js +21432 -0
  96. package/dist/optimizer/dphyp/cardinality.d.ts +69 -0
  97. package/dist/optimizer/dphyp/cost-model.d.ts +47 -0
  98. package/dist/optimizer/dphyp/dphyp.d.ts +32 -0
  99. package/dist/optimizer/dphyp/hypergraph.d.ts +38 -0
  100. package/dist/optimizer/optimizer.d.ts +12 -0
  101. package/dist/optimizer/pass.d.ts +5 -0
  102. package/dist/optimizer/passes/aggregate-pushdown.d.ts +6 -0
  103. package/dist/optimizer/passes/cte-optimization.d.ts +6 -0
  104. package/dist/optimizer/passes/empty-propagation.d.ts +6 -0
  105. package/dist/optimizer/passes/expr-walk.d.ts +20 -0
  106. package/dist/optimizer/passes/expression-simplifier.d.ts +8 -0
  107. package/dist/optimizer/passes/filter-ordering.d.ts +13 -0
  108. package/dist/optimizer/passes/having-pushdown.d.ts +6 -0
  109. package/dist/optimizer/passes/index-selection.d.ts +24 -0
  110. package/dist/optimizer/passes/join-elimination.d.ts +6 -0
  111. package/dist/optimizer/passes/join-reorder.d.ts +12 -0
  112. package/dist/optimizer/passes/join-residual-split.d.ts +6 -0
  113. package/dist/optimizer/passes/limit-pushdown.d.ts +6 -0
  114. package/dist/optimizer/passes/node-merge.d.ts +6 -0
  115. package/dist/optimizer/passes/outer-to-inner.d.ts +6 -0
  116. package/dist/optimizer/passes/physical-design.d.ts +12 -0
  117. package/dist/optimizer/passes/plan-refs.d.ts +22 -0
  118. package/dist/optimizer/passes/predicate-dedup.d.ts +6 -0
  119. package/dist/optimizer/passes/predicate-inference.d.ts +6 -0
  120. package/dist/optimizer/passes/predicate-pushdown.d.ts +9 -0
  121. package/dist/optimizer/passes/projection-pushdown.d.ts +6 -0
  122. package/dist/optimizer/passes/sort-elimination.d.ts +6 -0
  123. package/dist/optimizer/passes/subquery-unnesting.d.ts +6 -0
  124. package/dist/optimizer/passes/topn-fusion.d.ts +6 -0
  125. package/dist/parallel/chunk-transport.d.ts +24 -0
  126. package/dist/parallel/fragment-pool.d.ts +49 -0
  127. package/dist/parallel/fragment-worker.d.ts +1 -0
  128. package/dist/parallel/morsel-scheduler.d.ts +11 -0
  129. package/dist/parallel/parallel-dispatch.d.ts +69 -0
  130. package/dist/parallel/partial-spill.d.ts +3 -0
  131. package/dist/parallel/worker-messages.d.ts +243 -0
  132. package/dist/parallel/worker-pool.d.ts +62 -0
  133. package/dist/parallel/worker-thread.d.ts +1 -0
  134. package/dist/parser/ast.d.ts +298 -0
  135. package/dist/parser/lexer.d.ts +135 -0
  136. package/dist/parser/parser.d.ts +64 -0
  137. package/dist/planner/logical-plan.d.ts +250 -0
  138. package/dist/planner/logical-planner.d.ts +23 -0
  139. package/dist/planner/plan-formatter.d.ts +4 -0
  140. package/dist/planner/plan-visitor.d.ts +58 -0
  141. package/dist/runtime/platform.d.ts +4 -0
  142. package/dist/storage/backend/memory-storage-backend.d.ts +14 -0
  143. package/dist/storage/backend/node-storage-backend.d.ts +11 -0
  144. package/dist/storage/btree.d.ts +34 -0
  145. package/dist/storage/buffer-pool.d.ts +17 -0
  146. package/dist/storage/chunk.d.ts +26 -0
  147. package/dist/storage/column.d.ts +38 -0
  148. package/dist/storage/data-type.d.ts +54 -0
  149. package/dist/storage/dictionary-column.d.ts +33 -0
  150. package/dist/storage/page-store/file-page-store.d.ts +13 -0
  151. package/dist/storage/page-store/memory-page-store.d.ts +9 -0
  152. package/dist/storage/sab-arena.d.ts +26 -0
  153. package/dist/storage/serializer.d.ts +6 -0
  154. package/dist/storage/spill-manager/fs-storage.d.ts +11 -0
  155. package/dist/storage/spill-manager/memory-storage.d.ts +10 -0
  156. package/dist/storage/spill-manager/spill-manager.d.ts +17 -0
  157. package/dist/storage/storage-constants.d.ts +3 -0
  158. package/dist/storage/table.d.ts +31 -0
  159. package/dist/storage/temp-space/memory-temp-space.d.ts +11 -0
  160. package/dist/storage/temp-space/temp-directory-manager.d.ts +14 -0
  161. package/dist/utils/bitmap.d.ts +11 -0
  162. package/dist/utils/hash.d.ts +1 -0
  163. package/dist/utils/lru-cache.d.ts +24 -0
  164. package/dist/utils/priority-queue.d.ts +18 -0
  165. package/dist/wasm/dispatch.d.ts +13 -0
  166. package/dist/wasm/fetch-byte-source.d.ts +2 -0
  167. package/dist/wasm/kernels/core-instance.d.ts +6 -0
  168. package/dist/wasm/kernels/kernel-factory.d.ts +8 -0
  169. package/dist/wasm/kernels/wasm-aggregate.d.ts +6 -0
  170. package/dist/wasm/kernels/wasm-arithmetic.d.ts +13 -0
  171. package/dist/wasm/kernels/wasm-filter-f64.d.ts +8 -0
  172. package/dist/wasm/kernels/wasm-filter.d.ts +5 -0
  173. package/dist/wasm/loader.d.ts +17 -0
  174. package/dist/wasm/node-byte-source.d.ts +1 -0
  175. package/dist/wasm/region-allocator.d.ts +23 -0
  176. package/dist/wasm/register-kernels.d.ts +1 -0
  177. package/dist/wasm/wasm-loader-base.d.ts +33 -0
  178. package/dist/wasm/wasm-types.d.ts +103 -0
  179. package/package.json +60 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.