rubydb 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.
- checksums.yaml +7 -0
- data/.gitattributes +20 -0
- data/.github/ISSUE_TEMPLATE/bug.yml +0 -0
- data/.github/ISSUE_TEMPLATE/feature.yml +0 -0
- data/.github/ISSUE_TEMPLATE/performance.yml +0 -0
- data/.github/ISSUE_TEMPLATE/security.yml +0 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +15 -0
- data/.github/dependabot.yml +0 -0
- data/.github/workflows/benchmark.yml +26 -0
- data/.github/workflows/compatibility.yml +63 -0
- data/.github/workflows/fuzz.yml +33 -0
- data/.github/workflows/lint.yml +21 -0
- data/.github/workflows/operations.yml +24 -0
- data/.github/workflows/production-validation.yml +111 -0
- data/.github/workflows/release.yml +77 -0
- data/.github/workflows/security.yml +37 -0
- data/.github/workflows/test.yml +26 -0
- data/.github/workflows/workload.yml +58 -0
- data/.gitignore +43 -0
- data/.rspec +4 -0
- data/.rubocop.yml +44 -0
- data/.ruby-version +1 -0
- data/.standard.yml +14 -0
- data/ARCHITECTURE.md +21 -0
- data/CHANGELOG.md +31 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/CONTRIBUTING.md +29 -0
- data/GOVERNANCE.md +16 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +71 -0
- data/LICENSE +60 -0
- data/README.md +162 -0
- data/ROADMAP.md +27 -0
- data/Rakefile +71 -0
- data/SECURITY.md +54 -0
- data/SUPPORT.md +14 -0
- data/adapters/activerecord/Gemfile +11 -0
- data/adapters/activerecord/README.md +9 -0
- data/adapters/activerecord/lib/active_record/connection_adapters/rubydb_adapter.rb +887 -0
- data/adapters/activerecord/rubydb-activerecord.gemspec +27 -0
- data/adapters/activerecord/spec/rubydb_adapter_integration_spec.rb +151 -0
- data/adapters/ruby/README.md +18 -0
- data/adapters/sequel/README.md +11 -0
- data/bin/rubydb +19 -0
- data/bin/rubydb-server +126 -0
- data/config/development.yml +0 -0
- data/config/monitoring/prometheus-alerts.yml +39 -0
- data/config/production.yml +36 -0
- data/config/test.yml +0 -0
- data/docs/README.md +71 -0
- data/docs/architecture/concurrency.md +14 -0
- data/docs/architecture/current-state.md +125 -0
- data/docs/architecture/execution-engine.md +25 -0
- data/docs/architecture/indexes.md +19 -0
- data/docs/architecture/mvcc.md +19 -0
- data/docs/architecture/overview.md +13 -0
- data/docs/architecture/pages.md +11 -0
- data/docs/architecture/production-roadmap.md +82 -0
- data/docs/architecture/query-planner.md +20 -0
- data/docs/architecture/recovery.md +18 -0
- data/docs/architecture/sql-engine.md +12 -0
- data/docs/architecture/storage-engine.md +14 -0
- data/docs/architecture/transactions.md +10 -0
- data/docs/architecture/wal.md +28 -0
- data/docs/cli-cheatsheet.md +98 -0
- data/docs/cli.md +275 -0
- data/docs/contributing/architecture.md +9 -0
- data/docs/contributing/benchmarking.md +14 -0
- data/docs/contributing/development.md +16 -0
- data/docs/contributing/release-process.md +49 -0
- data/docs/contributing/testing.md +16 -0
- data/docs/debugging.md +229 -0
- data/docs/developer/branching.md +10 -0
- data/docs/developer/database-diff.md +10 -0
- data/docs/developer/local-development.md +17 -0
- data/docs/developer/snapshots.md +9 -0
- data/docs/developer/temporal-data.md +10 -0
- data/docs/developer-guide.md +297 -0
- data/docs/getting-started/first-database.md +16 -0
- data/docs/getting-started/first-query.md +13 -0
- data/docs/getting-started/installation.md +19 -0
- data/docs/getting-started/local-to-production.md +300 -0
- data/docs/getting-started/quickstart.md +17 -0
- data/docs/getting-started/rails.md +16 -0
- data/docs/hardening_backlog.md +93 -0
- data/docs/lessons-learned.md +112 -0
- data/docs/operations/backups.md +33 -0
- data/docs/operations/disaster-recovery.md +31 -0
- data/docs/operations/failover.md +30 -0
- data/docs/operations/monitoring.md +25 -0
- data/docs/operations/production-guide.md +295 -0
- data/docs/operations/production-runbook.md +45 -0
- data/docs/operations/replication.md +33 -0
- data/docs/operations/restore.md +6 -0
- data/docs/operations/runbook.md +34 -0
- data/docs/operations/upgrades.md +14 -0
- data/docs/operations/workload-testing.md +17 -0
- data/docs/production-readiness.md +118 -0
- data/docs/production_validation.md +150 -0
- data/docs/rails/active-record.md +11 -0
- data/docs/rails/compatibility-guide.md +90 -0
- data/docs/rails/database-yml.md +92 -0
- data/docs/rails/installation.md +17 -0
- data/docs/rails/migrations.md +17 -0
- data/docs/rails/production.md +82 -0
- data/docs/rails/troubleshooting.md +18 -0
- data/docs/release.md +59 -0
- data/docs/server/architecture.md +10 -0
- data/docs/server/authentication.md +10 -0
- data/docs/server/configuration.md +16 -0
- data/docs/server/connection-pooling.md +10 -0
- data/docs/server/deployment.md +10 -0
- data/docs/server/protocol.md +12 -0
- data/docs/sql/compatibility-guide.md +82 -0
- data/docs/sql/compatibility.md +39 -0
- data/docs/sql/data-types.md +10 -0
- data/docs/sql/functions.md +9 -0
- data/docs/sql/joins.md +9 -0
- data/docs/sql/operators.md +9 -0
- data/docs/sql/sqlite-compatibility.md +21 -0
- data/docs/sql/syntax.md +10 -0
- data/docs/sql/transactions.md +10 -0
- data/docs/troubleshooting.md +244 -0
- data/exe/rubydb +23 -0
- data/lib/rubydb/backup/archive.rb +334 -0
- data/lib/rubydb/backup/backup.rb +401 -0
- data/lib/rubydb/backup/incremental.rb +353 -0
- data/lib/rubydb/backup/restore.rb +290 -0
- data/lib/rubydb/backup/snapshot.rb +267 -0
- data/lib/rubydb/backup/verification.rb +279 -0
- data/lib/rubydb/branching/branch.rb +181 -0
- data/lib/rubydb/branching/branch_manager.rb +311 -0
- data/lib/rubydb/branching/branch_metadata.rb +140 -0
- data/lib/rubydb/branching/checkout.rb +166 -0
- data/lib/rubydb/branching/copy_on_write.rb +272 -0
- data/lib/rubydb/branching/diff.rb +138 -0
- data/lib/rubydb/branching/merge.rb +285 -0
- data/lib/rubydb/build_info.rb +15 -0
- data/lib/rubydb/catalog/catalog.rb +391 -0
- data/lib/rubydb/catalog/column.rb +112 -0
- data/lib/rubydb/catalog/constraint.rb +180 -0
- data/lib/rubydb/catalog/database.rb +184 -0
- data/lib/rubydb/catalog/index.rb +97 -0
- data/lib/rubydb/catalog/schema.rb +103 -0
- data/lib/rubydb/catalog/sequence.rb +90 -0
- data/lib/rubydb/catalog/system_catalog.rb +698 -0
- data/lib/rubydb/catalog/table.rb +178 -0
- data/lib/rubydb/catalog/trigger.rb +102 -0
- data/lib/rubydb/catalog/view.rb +66 -0
- data/lib/rubydb/cli/application.rb +163 -0
- data/lib/rubydb/cli/commands/backup.rb +81 -0
- data/lib/rubydb/cli/commands/branch.rb +72 -0
- data/lib/rubydb/cli/commands/checkout.rb +54 -0
- data/lib/rubydb/cli/commands/create.rb +58 -0
- data/lib/rubydb/cli/commands/diff.rb +77 -0
- data/lib/rubydb/cli/commands/doctor.rb +74 -0
- data/lib/rubydb/cli/commands/drop.rb +57 -0
- data/lib/rubydb/cli/commands/init.rb +102 -0
- data/lib/rubydb/cli/commands/inspect.rb +95 -0
- data/lib/rubydb/cli/commands/merge.rb +63 -0
- data/lib/rubydb/cli/commands/migrate.rb +62 -0
- data/lib/rubydb/cli/commands/restart.rb +39 -0
- data/lib/rubydb/cli/commands/restore.rb +121 -0
- data/lib/rubydb/cli/commands/shell.rb +365 -0
- data/lib/rubydb/cli/commands/snapshot.rb +79 -0
- data/lib/rubydb/cli/commands/start.rb +82 -0
- data/lib/rubydb/cli/commands/status.rb +92 -0
- data/lib/rubydb/cli/commands/stop.rb +47 -0
- data/lib/rubydb/cli/commands/vacuum.rb +58 -0
- data/lib/rubydb/cli/formatter.rb +221 -0
- data/lib/rubydb/cli/output.rb +168 -0
- data/lib/rubydb/client/client.rb +304 -0
- data/lib/rubydb/client/connection.rb +415 -0
- data/lib/rubydb/client/connection_pool.rb +168 -0
- data/lib/rubydb/client/connection_url.rb +96 -0
- data/lib/rubydb/client/prepared_statement.rb +60 -0
- data/lib/rubydb/client/result.rb +123 -0
- data/lib/rubydb/client/statement.rb +52 -0
- data/lib/rubydb/client/transaction.rb +130 -0
- data/lib/rubydb/concurrency/concurrency.rb +19 -0
- data/lib/rubydb/concurrency/deadlock_detector.rb +150 -0
- data/lib/rubydb/concurrency/latch.rb +101 -0
- data/lib/rubydb/concurrency/lock_graph.rb +165 -0
- data/lib/rubydb/concurrency/mutex.rb +183 -0
- data/lib/rubydb/concurrency/rw_lock.rb +180 -0
- data/lib/rubydb/concurrency/scheduler.rb +250 -0
- data/lib/rubydb/concurrency/worker_pool.rb +143 -0
- data/lib/rubydb/configuration/config.rb +170 -0
- data/lib/rubydb/configuration/defaults.rb +179 -0
- data/lib/rubydb/configuration/environment.rb +152 -0
- data/lib/rubydb/configuration/parser.rb +185 -0
- data/lib/rubydb/configuration/validation.rb +221 -0
- data/lib/rubydb/constants.rb +74 -0
- data/lib/rubydb/constraints/check.rb +181 -0
- data/lib/rubydb/constraints/constraint.rb +101 -0
- data/lib/rubydb/constraints/foreign_key.rb +130 -0
- data/lib/rubydb/constraints/not_null.rb +64 -0
- data/lib/rubydb/constraints/primary_key.rb +99 -0
- data/lib/rubydb/constraints/unique.rb +108 -0
- data/lib/rubydb/constraints/validator.rb +350 -0
- data/lib/rubydb/errors/authentication_error.rb +10 -0
- data/lib/rubydb/errors/authorization_error.rb +23 -0
- data/lib/rubydb/errors/client_error.rb +10 -0
- data/lib/rubydb/errors/configuration_error.rb +10 -0
- data/lib/rubydb/errors/connection_error.rb +10 -0
- data/lib/rubydb/errors/constraint_error.rb +23 -0
- data/lib/rubydb/errors/corruption_error.rb +10 -0
- data/lib/rubydb/errors/database_error.rb +10 -0
- data/lib/rubydb/errors/error.rb +20 -0
- data/lib/rubydb/errors/execution_error.rb +10 -0
- data/lib/rubydb/errors/parser_error.rb +10 -0
- data/lib/rubydb/errors/recovery_error.rb +10 -0
- data/lib/rubydb/errors/replication_error.rb +10 -0
- data/lib/rubydb/errors/server_error.rb +6 -0
- data/lib/rubydb/errors/storage_error.rb +10 -0
- data/lib/rubydb/errors/transaction_error.rb +10 -0
- data/lib/rubydb/execution/aggregate_executor.rb +138 -0
- data/lib/rubydb/execution/delete_executor.rb +112 -0
- data/lib/rubydb/execution/distinct_executor.rb +135 -0
- data/lib/rubydb/execution/executor.rb +1192 -0
- data/lib/rubydb/execution/expression.rb +193 -0
- data/lib/rubydb/execution/index_scan.rb +142 -0
- data/lib/rubydb/execution/insert_executor.rb +217 -0
- data/lib/rubydb/execution/join_executor.rb +249 -0
- data/lib/rubydb/execution/limit_executor.rb +85 -0
- data/lib/rubydb/execution/optimizer.rb +215 -0
- data/lib/rubydb/execution/plan.rb +361 -0
- data/lib/rubydb/execution/planner.rb +546 -0
- data/lib/rubydb/execution/predicate.rb +235 -0
- data/lib/rubydb/execution/scan.rb +49 -0
- data/lib/rubydb/execution/sequential_scan.rb +63 -0
- data/lib/rubydb/execution/sort_executor.rb +185 -0
- data/lib/rubydb/execution/update_executor.rb +162 -0
- data/lib/rubydb/functions/aggregate.rb +70 -0
- data/lib/rubydb/functions/date_functions.rb +278 -0
- data/lib/rubydb/functions/function.rb +85 -0
- data/lib/rubydb/functions/json_functions.rb +215 -0
- data/lib/rubydb/functions/numeric_functions.rb +346 -0
- data/lib/rubydb/functions/scalar.rb +52 -0
- data/lib/rubydb/functions/string_functions.rb +383 -0
- data/lib/rubydb/functions/system_functions.rb +246 -0
- data/lib/rubydb/history/as_of.rb +238 -0
- data/lib/rubydb/history/change.rb +105 -0
- data/lib/rubydb/history/history.rb +131 -0
- data/lib/rubydb/history/history_manager.rb +229 -0
- data/lib/rubydb/history/temporal_query.rb +202 -0
- data/lib/rubydb/history/timeline.rb +144 -0
- data/lib/rubydb/indexes/btree.rb +186 -0
- data/lib/rubydb/indexes/btree_cursor.rb +258 -0
- data/lib/rubydb/indexes/btree_node.rb +385 -0
- data/lib/rubydb/indexes/hash_index.rb +150 -0
- data/lib/rubydb/indexes/index.rb +71 -0
- data/lib/rubydb/indexes/index_manager.rb +406 -0
- data/lib/rubydb/indexes/index_scan.rb +470 -0
- data/lib/rubydb/migrations/migration.rb +254 -0
- data/lib/rubydb/migrations/migration_lock.rb +146 -0
- data/lib/rubydb/migrations/migration_manager.rb +176 -0
- data/lib/rubydb/migrations/migration_version.rb +71 -0
- data/lib/rubydb/migrations/schema_diff.rb +211 -0
- data/lib/rubydb/migrations/schema_version.rb +64 -0
- data/lib/rubydb/monitoring/events.rb +160 -0
- data/lib/rubydb/monitoring/health.rb +222 -0
- data/lib/rubydb/monitoring/logger.rb +193 -0
- data/lib/rubydb/monitoring/metrics.rb +359 -0
- data/lib/rubydb/monitoring/performance.rb +176 -0
- data/lib/rubydb/monitoring/statistics.rb +170 -0
- data/lib/rubydb/mvcc/garbage_collector.rb +199 -0
- data/lib/rubydb/mvcc/mvcc.rb +16 -0
- data/lib/rubydb/mvcc/snapshot.rb +147 -0
- data/lib/rubydb/mvcc/vacuum.rb +180 -0
- data/lib/rubydb/mvcc/version.rb +106 -0
- data/lib/rubydb/mvcc/version_store.rb +398 -0
- data/lib/rubydb/mvcc/visibility.rb +109 -0
- data/lib/rubydb/protocol/capabilities.rb +125 -0
- data/lib/rubydb/protocol/decoder.rb +145 -0
- data/lib/rubydb/protocol/encoder.rb +136 -0
- data/lib/rubydb/protocol/handshake.rb +305 -0
- data/lib/rubydb/protocol/message.rb +121 -0
- data/lib/rubydb/protocol/protocol.rb +277 -0
- data/lib/rubydb/protocol/version.rb +54 -0
- data/lib/rubydb/rails/adapter.rb +239 -0
- data/lib/rubydb/rails/connection.rb +314 -0
- data/lib/rubydb/rails/database_statements.rb +122 -0
- data/lib/rubydb/rails/migration.rb +131 -0
- data/lib/rubydb/rails/quoting.rb +109 -0
- data/lib/rubydb/rails/result.rb +120 -0
- data/lib/rubydb/rails/schema_statements.rb +339 -0
- data/lib/rubydb/rails/transaction.rb +105 -0
- data/lib/rubydb/rails/type.rb +126 -0
- data/lib/rubydb/recovery/checkpoint.rb +257 -0
- data/lib/rubydb/recovery/consistency.rb +467 -0
- data/lib/rubydb/recovery/corruption_detector.rb +5 -0
- data/lib/rubydb/recovery/crash_recovery.rb +387 -0
- data/lib/rubydb/recovery/recovery_manager.rb +206 -0
- data/lib/rubydb/recovery/redo.rb +237 -0
- data/lib/rubydb/recovery/undo.rb +206 -0
- data/lib/rubydb/replication/failover.rb +5 -0
- data/lib/rubydb/replication/fencing.rb +63 -0
- data/lib/rubydb/replication/primary.rb +450 -0
- data/lib/rubydb/replication/replica.rb +384 -0
- data/lib/rubydb/replication/replication_log.rb +200 -0
- data/lib/rubydb/replication/replication_manager.rb +308 -0
- data/lib/rubydb/replication/replication_slot.rb +295 -0
- data/lib/rubydb/replication/replication_stream.rb +201 -0
- data/lib/rubydb/rubydb.rb +560 -0
- data/lib/rubydb/security/access_control.rb +254 -0
- data/lib/rubydb/security/audit_log.rb +213 -0
- data/lib/rubydb/security/authentication.rb +302 -0
- data/lib/rubydb/security/authorization.rb +282 -0
- data/lib/rubydb/security/credentials.rb +196 -0
- data/lib/rubydb/security/password.rb +215 -0
- data/lib/rubydb/security/permissions.rb +74 -0
- data/lib/rubydb/security/role.rb +101 -0
- data/lib/rubydb/security/user.rb +86 -0
- data/lib/rubydb/server/connection.rb +366 -0
- data/lib/rubydb/server/connection_pool.rb +193 -0
- data/lib/rubydb/server/lifecycle.rb +228 -0
- data/lib/rubydb/server/listener.rb +136 -0
- data/lib/rubydb/server/request_handler.rb +276 -0
- data/lib/rubydb/server/server.rb +364 -0
- data/lib/rubydb/server/session.rb +369 -0
- data/lib/rubydb/server/worker.rb +210 -0
- data/lib/rubydb/server/worker_pool.rb +168 -0
- data/lib/rubydb/sql/ast/alter_table.rb +169 -0
- data/lib/rubydb/sql/ast/begin_transaction.rb +47 -0
- data/lib/rubydb/sql/ast/commit.rb +37 -0
- data/lib/rubydb/sql/ast/constraint.rb +83 -0
- data/lib/rubydb/sql/ast/create_database.rb +41 -0
- data/lib/rubydb/sql/ast/create_index.rb +61 -0
- data/lib/rubydb/sql/ast/create_schema.rb +52 -0
- data/lib/rubydb/sql/ast/create_table.rb +187 -0
- data/lib/rubydb/sql/ast/delete.rb +54 -0
- data/lib/rubydb/sql/ast/drop_database.rb +41 -0
- data/lib/rubydb/sql/ast/drop_index.rb +41 -0
- data/lib/rubydb/sql/ast/drop_schema.rb +49 -0
- data/lib/rubydb/sql/ast/drop_table.rb +49 -0
- data/lib/rubydb/sql/ast/explain.rb +64 -0
- data/lib/rubydb/sql/ast/expression.rb +604 -0
- data/lib/rubydb/sql/ast/insert.rb +82 -0
- data/lib/rubydb/sql/ast/node.rb +42 -0
- data/lib/rubydb/sql/ast/rollback.rb +63 -0
- data/lib/rubydb/sql/ast/savepoint.rb +59 -0
- data/lib/rubydb/sql/ast/select.rb +88 -0
- data/lib/rubydb/sql/ast/set_operation.rb +20 -0
- data/lib/rubydb/sql/ast/trigger.rb +29 -0
- data/lib/rubydb/sql/ast/update.rb +88 -0
- data/lib/rubydb/sql/ast/vacuum.rb +19 -0
- data/lib/rubydb/sql/ast/view.rb +32 -0
- data/lib/rubydb/sql/ast/with.rb +32 -0
- data/lib/rubydb/sql/grammar.rb +86 -0
- data/lib/rubydb/sql/keywords.rb +156 -0
- data/lib/rubydb/sql/lexer.rb +214 -0
- data/lib/rubydb/sql/operators.rb +100 -0
- data/lib/rubydb/sql/parser.rb +1185 -0
- data/lib/rubydb/sql/planner/analyzer.rb +302 -0
- data/lib/rubydb/sql/planner/binder.rb +550 -0
- data/lib/rubydb/sql/planner/type_checker.rb +431 -0
- data/lib/rubydb/sql/token.rb +210 -0
- data/lib/rubydb/storage/buffer_frame.rb +44 -0
- data/lib/rubydb/storage/buffer_pool.rb +155 -0
- data/lib/rubydb/storage/database_lock.rb +74 -0
- data/lib/rubydb/storage/deserializer.rb +342 -0
- data/lib/rubydb/storage/engine.rb +2338 -0
- data/lib/rubydb/storage/file_manager.rb +187 -0
- data/lib/rubydb/storage/free_space_map.rb +81 -0
- data/lib/rubydb/storage/page.rb +94 -0
- data/lib/rubydb/storage/page_allocator.rb +855 -0
- data/lib/rubydb/storage/page_header.rb +67 -0
- data/lib/rubydb/storage/page_manager.rb +131 -0
- data/lib/rubydb/storage/record.rb +58 -0
- data/lib/rubydb/storage/row.rb +78 -0
- data/lib/rubydb/storage/serializer.rb +51 -0
- data/lib/rubydb/storage/storage_layout.rb +151 -0
- data/lib/rubydb/storage/storage_manager.rb +114 -0
- data/lib/rubydb/storage/tuple.rb +461 -0
- data/lib/rubydb/storage/visibility_map.rb +984 -0
- data/lib/rubydb/transactions/commit_manager.rb +220 -0
- data/lib/rubydb/transactions/isolation.rb +98 -0
- data/lib/rubydb/transactions/lock.rb +76 -0
- data/lib/rubydb/transactions/lock_manager.rb +362 -0
- data/lib/rubydb/transactions/savepoint.rb +143 -0
- data/lib/rubydb/transactions/transaction.rb +215 -0
- data/lib/rubydb/transactions/transaction_id.rb +84 -0
- data/lib/rubydb/transactions/transaction_log.rb +257 -0
- data/lib/rubydb/transactions/transaction_manager.rb +435 -0
- data/lib/rubydb/types/bigint.rb +36 -0
- data/lib/rubydb/types/blob.rb +37 -0
- data/lib/rubydb/types/boolean.rb +34 -0
- data/lib/rubydb/types/date.rb +39 -0
- data/lib/rubydb/types/decimal.rb +48 -0
- data/lib/rubydb/types/float.rb +34 -0
- data/lib/rubydb/types/integer.rb +36 -0
- data/lib/rubydb/types/json.rb +41 -0
- data/lib/rubydb/types/null.rb +34 -0
- data/lib/rubydb/types/smallint.rb +36 -0
- data/lib/rubydb/types/text.rb +37 -0
- data/lib/rubydb/types/time.rb +46 -0
- data/lib/rubydb/types/timestamp.rb +39 -0
- data/lib/rubydb/types/type.rb +119 -0
- data/lib/rubydb/types/uuid.rb +47 -0
- data/lib/rubydb/types/varchar.rb +37 -0
- data/lib/rubydb/version.rb +33 -0
- data/lib/rubydb/wal/archive.rb +193 -0
- data/lib/rubydb/wal/checkpoint.rb +183 -0
- data/lib/rubydb/wal/lsn.rb +94 -0
- data/lib/rubydb/wal/reader.rb +260 -0
- data/lib/rubydb/wal/record.rb +105 -0
- data/lib/rubydb/wal/segment.rb +193 -0
- data/lib/rubydb/wal/wal.rb +452 -0
- data/lib/rubydb/wal/writer.rb +236 -0
- data/lib/rubydb.rb +7 -0
- data/packaging/docker/Dockerfile +36 -0
- data/packaging/docker/docker-compose.failover.yml +43 -0
- data/packaging/docker/entrypoint.sh +15 -0
- data/packaging/homebrew/rubydb.rb +19 -0
- data/packaging/systemd/rubydb.service +22 -0
- data/rubydb.gemspec +57 -0
- data/scripts/benchmark +7 -0
- data/scripts/durability_drill +37 -0
- data/scripts/format +0 -0
- data/scripts/fuzz +63 -0
- data/scripts/lint +0 -0
- data/scripts/release +50 -0
- data/scripts/release_check +43 -0
- data/scripts/replication_failover_drill +250 -0
- data/scripts/replication_network_failover_drill +255 -0
- data/scripts/restore_drill +45 -0
- data/scripts/security +0 -0
- data/scripts/setup +0 -0
- data/scripts/test +0 -0
- data/scripts/test-chaos +0 -0
- data/scripts/test-crash +0 -0
- data/scripts/test-integration +0 -0
- data/scripts/test-unit +0 -0
- data/visibility_map.json +1 -0
- metadata +538 -0
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "digest"
|
|
4
|
+
require "base64"
|
|
5
|
+
|
|
6
|
+
module RubyDB
|
|
7
|
+
module Functions
|
|
8
|
+
# StringFunctions - All string-related functions
|
|
9
|
+
class StringFunctions
|
|
10
|
+
# LOWER - Convert string to lowercase
|
|
11
|
+
class Lower < ScalarFunction
|
|
12
|
+
def initialize
|
|
13
|
+
super(:lower,
|
|
14
|
+
description: "Convert string to lowercase",
|
|
15
|
+
category: :string,
|
|
16
|
+
min_args: 1,
|
|
17
|
+
max_args: 1,
|
|
18
|
+
return_type: :text,
|
|
19
|
+
deterministic: true,
|
|
20
|
+
immutable: true
|
|
21
|
+
)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def execute_scalar(args)
|
|
25
|
+
return nil if args[0].nil?
|
|
26
|
+
args[0].to_s.downcase
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# UPPER - Convert string to uppercase
|
|
31
|
+
class Upper < ScalarFunction
|
|
32
|
+
def initialize
|
|
33
|
+
super(:upper,
|
|
34
|
+
description: "Convert string to uppercase",
|
|
35
|
+
category: :string,
|
|
36
|
+
min_args: 1,
|
|
37
|
+
max_args: 1,
|
|
38
|
+
return_type: :text,
|
|
39
|
+
deterministic: true,
|
|
40
|
+
immutable: true
|
|
41
|
+
)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def execute_scalar(args)
|
|
45
|
+
return nil if args[0].nil?
|
|
46
|
+
args[0].to_s.upcase
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
# LENGTH - Get string length
|
|
51
|
+
class Length < ScalarFunction
|
|
52
|
+
def initialize
|
|
53
|
+
super(:length,
|
|
54
|
+
description: "Get string length",
|
|
55
|
+
category: :string,
|
|
56
|
+
min_args: 1,
|
|
57
|
+
max_args: 1,
|
|
58
|
+
return_type: :integer,
|
|
59
|
+
deterministic: true,
|
|
60
|
+
immutable: true
|
|
61
|
+
)
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def execute_scalar(args)
|
|
65
|
+
return nil if args[0].nil?
|
|
66
|
+
args[0].to_s.length
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# SUBSTR - Extract substring
|
|
71
|
+
class Substr < ScalarFunction
|
|
72
|
+
def initialize
|
|
73
|
+
super(:substr,
|
|
74
|
+
description: "Extract substring",
|
|
75
|
+
category: :string,
|
|
76
|
+
min_args: 2,
|
|
77
|
+
max_args: 3,
|
|
78
|
+
return_type: :text,
|
|
79
|
+
deterministic: true,
|
|
80
|
+
immutable: true
|
|
81
|
+
)
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def execute_scalar(args)
|
|
85
|
+
return nil if args[0].nil? || args[1].nil?
|
|
86
|
+
|
|
87
|
+
str = args[0].to_s
|
|
88
|
+
start_pos = args[1].to_i
|
|
89
|
+
length = args[2] ? args[2].to_i : str.length
|
|
90
|
+
|
|
91
|
+
start_pos -= 1 if start_pos > 0
|
|
92
|
+
str[start_pos, length]
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
# CONCAT - Concatenate strings
|
|
97
|
+
class Concat < ScalarFunction
|
|
98
|
+
def initialize
|
|
99
|
+
super(:concat,
|
|
100
|
+
description: "Concatenate strings",
|
|
101
|
+
category: :string,
|
|
102
|
+
min_args: 1,
|
|
103
|
+
max_args: -1,
|
|
104
|
+
return_type: :text,
|
|
105
|
+
deterministic: true,
|
|
106
|
+
immutable: true
|
|
107
|
+
)
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
def execute_scalar(args)
|
|
111
|
+
args.map { |a| a.to_s }.join
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# TRIM - Remove whitespace
|
|
116
|
+
class Trim < ScalarFunction
|
|
117
|
+
def initialize
|
|
118
|
+
super(:trim,
|
|
119
|
+
description: "Remove leading and trailing whitespace",
|
|
120
|
+
category: :string,
|
|
121
|
+
min_args: 1,
|
|
122
|
+
max_args: 1,
|
|
123
|
+
return_type: :text,
|
|
124
|
+
deterministic: true,
|
|
125
|
+
immutable: true
|
|
126
|
+
)
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
def execute_scalar(args)
|
|
130
|
+
return nil if args[0].nil?
|
|
131
|
+
args[0].to_s.strip
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
# LTRIM - Remove leading whitespace
|
|
136
|
+
class Ltrim < ScalarFunction
|
|
137
|
+
def initialize
|
|
138
|
+
super(:ltrim,
|
|
139
|
+
description: "Remove leading whitespace",
|
|
140
|
+
category: :string,
|
|
141
|
+
min_args: 1,
|
|
142
|
+
max_args: 1,
|
|
143
|
+
return_type: :text,
|
|
144
|
+
deterministic: true,
|
|
145
|
+
immutable: true
|
|
146
|
+
)
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
def execute_scalar(args)
|
|
150
|
+
return nil if args[0].nil?
|
|
151
|
+
args[0].to_s.lstrip
|
|
152
|
+
end
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
# RTRIM - Remove trailing whitespace
|
|
156
|
+
class Rtrim < ScalarFunction
|
|
157
|
+
def initialize
|
|
158
|
+
super(:rtrim,
|
|
159
|
+
description: "Remove trailing whitespace",
|
|
160
|
+
category: :string,
|
|
161
|
+
min_args: 1,
|
|
162
|
+
max_args: 1,
|
|
163
|
+
return_type: :text,
|
|
164
|
+
deterministic: true,
|
|
165
|
+
immutable: true
|
|
166
|
+
)
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
def execute_scalar(args)
|
|
170
|
+
return nil if args[0].nil?
|
|
171
|
+
args[0].to_s.rstrip
|
|
172
|
+
end
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
# REPLACE - Replace substring
|
|
176
|
+
class Replace < ScalarFunction
|
|
177
|
+
def initialize
|
|
178
|
+
super(:replace,
|
|
179
|
+
description: "Replace substring",
|
|
180
|
+
category: :string,
|
|
181
|
+
min_args: 3,
|
|
182
|
+
max_args: 3,
|
|
183
|
+
return_type: :text,
|
|
184
|
+
deterministic: true,
|
|
185
|
+
immutable: true
|
|
186
|
+
)
|
|
187
|
+
end
|
|
188
|
+
|
|
189
|
+
def execute_scalar(args)
|
|
190
|
+
return nil if args[0].nil?
|
|
191
|
+
str = args[0].to_s
|
|
192
|
+
from = args[1].to_s
|
|
193
|
+
to = args[2].to_s
|
|
194
|
+
str.gsub(from, to)
|
|
195
|
+
end
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
# POSITION - Find position of substring
|
|
199
|
+
class Position < ScalarFunction
|
|
200
|
+
def initialize
|
|
201
|
+
super(:position,
|
|
202
|
+
description: "Find position of substring",
|
|
203
|
+
category: :string,
|
|
204
|
+
min_args: 2,
|
|
205
|
+
max_args: 2,
|
|
206
|
+
return_type: :integer,
|
|
207
|
+
deterministic: true,
|
|
208
|
+
immutable: true
|
|
209
|
+
)
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
def execute_scalar(args)
|
|
213
|
+
return nil if args[0].nil? || args[1].nil?
|
|
214
|
+
substr = args[0].to_s
|
|
215
|
+
str = args[1].to_s
|
|
216
|
+
pos = str.index(substr)
|
|
217
|
+
pos ? pos + 1 : 0
|
|
218
|
+
end
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
# SPLIT_PART - Split string and get part
|
|
222
|
+
class SplitPart < ScalarFunction
|
|
223
|
+
def initialize
|
|
224
|
+
super(:split_part,
|
|
225
|
+
description: "Split string and get part",
|
|
226
|
+
category: :string,
|
|
227
|
+
min_args: 3,
|
|
228
|
+
max_args: 3,
|
|
229
|
+
return_type: :text,
|
|
230
|
+
deterministic: true,
|
|
231
|
+
immutable: true
|
|
232
|
+
)
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
def execute_scalar(args)
|
|
236
|
+
return nil if args[0].nil?
|
|
237
|
+
str = args[0].to_s
|
|
238
|
+
delimiter = args[1].to_s
|
|
239
|
+
part = args[2].to_i
|
|
240
|
+
|
|
241
|
+
parts = str.split(delimiter)
|
|
242
|
+
return nil if part <= 0 || part > parts.size
|
|
243
|
+
parts[part - 1]
|
|
244
|
+
end
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
# MD5 - Calculate MD5 hash
|
|
248
|
+
class MD5 < ScalarFunction
|
|
249
|
+
def initialize
|
|
250
|
+
super(:md5,
|
|
251
|
+
description: "Calculate MD5 hash",
|
|
252
|
+
category: :string,
|
|
253
|
+
min_args: 1,
|
|
254
|
+
max_args: 1,
|
|
255
|
+
return_type: :text,
|
|
256
|
+
deterministic: true,
|
|
257
|
+
immutable: true
|
|
258
|
+
)
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
def execute_scalar(args)
|
|
262
|
+
return nil if args[0].nil?
|
|
263
|
+
Digest::MD5.hexdigest(args[0].to_s)
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
# SHA256 - Calculate SHA256 hash
|
|
268
|
+
class SHA256 < ScalarFunction
|
|
269
|
+
def initialize
|
|
270
|
+
super(:sha256,
|
|
271
|
+
description: "Calculate SHA256 hash",
|
|
272
|
+
category: :string,
|
|
273
|
+
min_args: 1,
|
|
274
|
+
max_args: 1,
|
|
275
|
+
return_type: :text,
|
|
276
|
+
deterministic: true,
|
|
277
|
+
immutable: true
|
|
278
|
+
)
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
def execute_scalar(args)
|
|
282
|
+
return nil if args[0].nil?
|
|
283
|
+
Digest::SHA256.hexdigest(args[0].to_s)
|
|
284
|
+
end
|
|
285
|
+
end
|
|
286
|
+
|
|
287
|
+
# REVERSE - Reverse string
|
|
288
|
+
class Reverse < ScalarFunction
|
|
289
|
+
def initialize
|
|
290
|
+
super(:reverse,
|
|
291
|
+
description: "Reverse string",
|
|
292
|
+
category: :string,
|
|
293
|
+
min_args: 1,
|
|
294
|
+
max_args: 1,
|
|
295
|
+
return_type: :text,
|
|
296
|
+
deterministic: true,
|
|
297
|
+
immutable: true
|
|
298
|
+
)
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
def execute_scalar(args)
|
|
302
|
+
return nil if args[0].nil?
|
|
303
|
+
args[0].to_s.reverse
|
|
304
|
+
end
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
# LEFT - Get leftmost characters
|
|
308
|
+
class Left < ScalarFunction
|
|
309
|
+
def initialize
|
|
310
|
+
super(:left,
|
|
311
|
+
description: "Get leftmost characters",
|
|
312
|
+
category: :string,
|
|
313
|
+
min_args: 2,
|
|
314
|
+
max_args: 2,
|
|
315
|
+
return_type: :text,
|
|
316
|
+
deterministic: true,
|
|
317
|
+
immutable: true
|
|
318
|
+
)
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
def execute_scalar(args)
|
|
322
|
+
return nil if args[0].nil? || args[1].nil?
|
|
323
|
+
str = args[0].to_s
|
|
324
|
+
count = args[1].to_i
|
|
325
|
+
str[0, count]
|
|
326
|
+
end
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
# RIGHT - Get rightmost characters
|
|
330
|
+
class Right < ScalarFunction
|
|
331
|
+
def initialize
|
|
332
|
+
super(:right,
|
|
333
|
+
description: "Get rightmost characters",
|
|
334
|
+
category: :string,
|
|
335
|
+
min_args: 2,
|
|
336
|
+
max_args: 2,
|
|
337
|
+
return_type: :text,
|
|
338
|
+
deterministic: true,
|
|
339
|
+
immutable: true
|
|
340
|
+
)
|
|
341
|
+
end
|
|
342
|
+
|
|
343
|
+
def execute_scalar(args)
|
|
344
|
+
return nil if args[0].nil? || args[1].nil?
|
|
345
|
+
str = args[0].to_s
|
|
346
|
+
count = args[1].to_i
|
|
347
|
+
str[-count, count] || str
|
|
348
|
+
end
|
|
349
|
+
end
|
|
350
|
+
|
|
351
|
+
# STRING_AGG - String aggregate
|
|
352
|
+
class StringAgg < AggregateFunction
|
|
353
|
+
def initialize
|
|
354
|
+
super(:string_agg,
|
|
355
|
+
description: "Aggregate strings with delimiter",
|
|
356
|
+
category: :string,
|
|
357
|
+
min_args: 2,
|
|
358
|
+
max_args: 2,
|
|
359
|
+
return_type: :text
|
|
360
|
+
)
|
|
361
|
+
end
|
|
362
|
+
|
|
363
|
+
def execute_aggregate(values)
|
|
364
|
+
return nil if values.empty?
|
|
365
|
+
delimiter = values.last
|
|
366
|
+
values = values[0...-1]
|
|
367
|
+
values.compact.join(delimiter.to_s)
|
|
368
|
+
end
|
|
369
|
+
|
|
370
|
+
def combine(state, value)
|
|
371
|
+
return value if state.nil?
|
|
372
|
+
"#{state}#{delimiter}#{value}"
|
|
373
|
+
end
|
|
374
|
+
|
|
375
|
+
private
|
|
376
|
+
|
|
377
|
+
def delimiter
|
|
378
|
+
@delimiter ||= ","
|
|
379
|
+
end
|
|
380
|
+
end
|
|
381
|
+
end
|
|
382
|
+
end
|
|
383
|
+
end
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RubyDB
|
|
4
|
+
module Functions
|
|
5
|
+
# SystemFunctions - All system-related functions
|
|
6
|
+
class SystemFunctions
|
|
7
|
+
# VERSION - Database version
|
|
8
|
+
class Version < ScalarFunction
|
|
9
|
+
def initialize
|
|
10
|
+
super(:version,
|
|
11
|
+
description: "Database version",
|
|
12
|
+
category: :system,
|
|
13
|
+
min_args: 0,
|
|
14
|
+
max_args: 0,
|
|
15
|
+
return_type: :text,
|
|
16
|
+
deterministic: false,
|
|
17
|
+
immutable: false
|
|
18
|
+
)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def execute_scalar(args)
|
|
22
|
+
"RubyDB #{RubyDB::VERSION}"
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
# DB_NAME - Current database name
|
|
27
|
+
class DbName < ScalarFunction
|
|
28
|
+
def initialize
|
|
29
|
+
super(:db_name,
|
|
30
|
+
description: "Current database name",
|
|
31
|
+
category: :system,
|
|
32
|
+
min_args: 0,
|
|
33
|
+
max_args: 0,
|
|
34
|
+
return_type: :text,
|
|
35
|
+
deterministic: false,
|
|
36
|
+
immutable: false
|
|
37
|
+
)
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def execute_scalar(args)
|
|
41
|
+
@engine.current_database_name if @engine.respond_to?(:current_database_name)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
# USER - Current user
|
|
46
|
+
class User < ScalarFunction
|
|
47
|
+
def initialize
|
|
48
|
+
super(:user,
|
|
49
|
+
description: "Current user",
|
|
50
|
+
category: :system,
|
|
51
|
+
min_args: 0,
|
|
52
|
+
max_args: 0,
|
|
53
|
+
return_type: :text,
|
|
54
|
+
deterministic: false,
|
|
55
|
+
immutable: false
|
|
56
|
+
)
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def execute_scalar(args)
|
|
60
|
+
ENV["USER"] || ENV["USERNAME"] || "unknown"
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
# PG_BACKEND_PID - Current process ID
|
|
65
|
+
class BackendPid < ScalarFunction
|
|
66
|
+
def initialize
|
|
67
|
+
super(:pg_backend_pid,
|
|
68
|
+
description: "Current process ID",
|
|
69
|
+
category: :system,
|
|
70
|
+
min_args: 0,
|
|
71
|
+
max_args: 0,
|
|
72
|
+
return_type: :integer,
|
|
73
|
+
deterministic: false,
|
|
74
|
+
immutable: false
|
|
75
|
+
)
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
def execute_scalar(args)
|
|
79
|
+
Process.pid
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
# COALESCE - Return first non-null value
|
|
84
|
+
class Coalesce < ScalarFunction
|
|
85
|
+
def initialize
|
|
86
|
+
super(:coalesce,
|
|
87
|
+
description: "Return first non-null value",
|
|
88
|
+
category: :system,
|
|
89
|
+
min_args: 1,
|
|
90
|
+
max_args: -1,
|
|
91
|
+
return_type: :text,
|
|
92
|
+
deterministic: true,
|
|
93
|
+
immutable: true
|
|
94
|
+
)
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
def execute_scalar(args)
|
|
98
|
+
args.find { |a| !a.nil? }
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
# NULLIF - Return null if values equal
|
|
103
|
+
class NullIf < ScalarFunction
|
|
104
|
+
def initialize
|
|
105
|
+
super(:nullif,
|
|
106
|
+
description: "Return null if values equal",
|
|
107
|
+
category: :system,
|
|
108
|
+
min_args: 2,
|
|
109
|
+
max_args: 2,
|
|
110
|
+
return_type: :text,
|
|
111
|
+
deterministic: true,
|
|
112
|
+
immutable: true
|
|
113
|
+
)
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
def execute_scalar(args)
|
|
117
|
+
return nil if args[0].nil? || args[1].nil?
|
|
118
|
+
args[0] == args[1] ? nil : args[0]
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
# CAST - Cast value to type
|
|
123
|
+
class Cast < ScalarFunction
|
|
124
|
+
def initialize
|
|
125
|
+
super(:cast,
|
|
126
|
+
description: "Cast value to type",
|
|
127
|
+
category: :system,
|
|
128
|
+
min_args: 2,
|
|
129
|
+
max_args: 2,
|
|
130
|
+
return_type: :text,
|
|
131
|
+
deterministic: true,
|
|
132
|
+
immutable: true
|
|
133
|
+
)
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
def execute_scalar(args)
|
|
137
|
+
return nil if args[0].nil? || args[1].nil?
|
|
138
|
+
|
|
139
|
+
value = args[0]
|
|
140
|
+
target_type = args[1].to_s.downcase
|
|
141
|
+
|
|
142
|
+
case target_type
|
|
143
|
+
when "integer", "int"
|
|
144
|
+
value.to_i
|
|
145
|
+
when "bigint"
|
|
146
|
+
value.to_i
|
|
147
|
+
when "smallint"
|
|
148
|
+
value.to_i
|
|
149
|
+
when "float", "numeric", "decimal"
|
|
150
|
+
value.to_f
|
|
151
|
+
when "boolean", "bool"
|
|
152
|
+
value == true || value.to_s.downcase == "true" || value.to_s.downcase == "t" || value.to_i == 1
|
|
153
|
+
when "text", "string", "varchar"
|
|
154
|
+
value.to_s
|
|
155
|
+
when "date"
|
|
156
|
+
Date.parse(value.to_s) rescue nil
|
|
157
|
+
when "timestamp", "datetime"
|
|
158
|
+
Time.parse(value.to_s) rescue nil
|
|
159
|
+
when "json"
|
|
160
|
+
JSON.parse(value.to_s) rescue {}
|
|
161
|
+
else
|
|
162
|
+
value
|
|
163
|
+
end
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
# GREATEST - Return greatest value
|
|
168
|
+
class Greatest < ScalarFunction
|
|
169
|
+
def initialize
|
|
170
|
+
super(:greatest,
|
|
171
|
+
description: "Return greatest value",
|
|
172
|
+
category: :system,
|
|
173
|
+
min_args: 2,
|
|
174
|
+
max_args: -1,
|
|
175
|
+
return_type: :text,
|
|
176
|
+
deterministic: true,
|
|
177
|
+
immutable: true
|
|
178
|
+
)
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
def execute_scalar(args)
|
|
182
|
+
args.compact.max
|
|
183
|
+
end
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
# LEAST - Return least value
|
|
187
|
+
class Least < ScalarFunction
|
|
188
|
+
def initialize
|
|
189
|
+
super(:least,
|
|
190
|
+
description: "Return least value",
|
|
191
|
+
category: :system,
|
|
192
|
+
min_args: 2,
|
|
193
|
+
max_args: -1,
|
|
194
|
+
return_type: :text,
|
|
195
|
+
deterministic: true,
|
|
196
|
+
immutable: true
|
|
197
|
+
)
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
def execute_scalar(args)
|
|
201
|
+
args.compact.min
|
|
202
|
+
end
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
# RANDOM - Generate random number
|
|
206
|
+
class Random < ScalarFunction
|
|
207
|
+
def initialize
|
|
208
|
+
super(:random,
|
|
209
|
+
description: "Generate random number between 0 and 1",
|
|
210
|
+
category: :system,
|
|
211
|
+
min_args: 0,
|
|
212
|
+
max_args: 0,
|
|
213
|
+
return_type: :float,
|
|
214
|
+
deterministic: false,
|
|
215
|
+
immutable: false
|
|
216
|
+
)
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
def execute_scalar(args)
|
|
220
|
+
rand
|
|
221
|
+
end
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
# UUID_GENERATE - Generate UUID
|
|
225
|
+
class UUIDGenerate < ScalarFunction
|
|
226
|
+
require "securerandom"
|
|
227
|
+
|
|
228
|
+
def initialize
|
|
229
|
+
super(:uuid_generate,
|
|
230
|
+
description: "Generate UUID",
|
|
231
|
+
category: :system,
|
|
232
|
+
min_args: 0,
|
|
233
|
+
max_args: 0,
|
|
234
|
+
return_type: :uuid,
|
|
235
|
+
deterministic: false,
|
|
236
|
+
immutable: false
|
|
237
|
+
)
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
def execute_scalar(args)
|
|
241
|
+
SecureRandom.uuid
|
|
242
|
+
end
|
|
243
|
+
end
|
|
244
|
+
end
|
|
245
|
+
end
|
|
246
|
+
end
|