v0.1.0-pre.011-fix-01

This commit is contained in:
2026-07-24 15:06:27 +02:00
parent 42e8a203ec
commit 60660ca555
161 changed files with 10665 additions and 977 deletions

View File

@@ -1,5 +1,5 @@
// file: kb-store/src/postgres/query.rs
// version: 1
// version: 2
//! PostgreSQL query modules.
@@ -11,42 +11,42 @@ mod raw_queries;
mod replay_candidate_queries;
mod table_diagnostics_queries;
pub(in crate::postgres) use crate::postgres::query::core_extraction_queries::is_core_extraction_current;
pub(in crate::postgres) use crate::postgres::query::core_extraction_queries::list_raw_transactions_for_core_extraction;
pub(in crate::postgres) use crate::postgres::query::core_extraction_queries::mark_core_extraction_failed;
pub(in crate::postgres) use crate::postgres::query::core_extraction_queries::persist_core_extraction;
pub(in crate::postgres) use crate::postgres::query::core_queries::apply_core_store_schema;
pub(in crate::postgres) use crate::postgres::query::core_queries::insert_core_account_keys;
pub(in crate::postgres) use crate::postgres::query::core_queries::insert_core_balance_changes;
pub(in crate::postgres) use crate::postgres::query::core_queries::insert_core_inner_instructions;
pub(in crate::postgres) use crate::postgres::query::core_queries::insert_core_instructions;
pub(in crate::postgres) use crate::postgres::query::core_queries::insert_core_logs;
pub(in crate::postgres) use crate::postgres::query::core_queries::insert_core_transaction;
pub(in crate::postgres) use crate::postgres::query::core_queries::list_core_instruction_replay_inputs;
pub(in crate::postgres) use crate::postgres::query::core_queries::list_core_instructions_for_replay;
pub(in crate::postgres) use crate::postgres::query::core_queries::update_core_instruction_lifecycle;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::apply_decode_store_schema;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::is_decode_current;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::list_decode_coverage_summary;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::list_decode_inputs;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::list_materialized_events;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::mark_decode_failed;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::persist_decode_coverage_declarations;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::persist_decode_result;
pub(in crate::postgres) use crate::postgres::query::decode_pipeline_queries::persist_materialization_result;
pub(in crate::postgres) use crate::postgres::query::health_queries::load_current_schema;
pub(in crate::postgres) use crate::postgres::query::health_queries::load_latest_migration_version;
pub(in crate::postgres) use crate::postgres::query::health_queries::load_migration_table_name;
pub(in crate::postgres) use crate::postgres::query::health_queries::load_server_version;
pub(in crate::postgres) use crate::postgres::query::health_queries::run_health_check;
pub(in crate::postgres) use crate::postgres::query::raw_queries::apply_raw_store_schema;
pub(in crate::postgres) use crate::postgres::query::raw_queries::has_raw_transaction_signature;
pub(in crate::postgres) use crate::postgres::query::raw_queries::has_transaction_observation_key;
pub(in crate::postgres) use crate::postgres::query::raw_queries::insert_raw_transaction;
pub(in crate::postgres) use crate::postgres::query::raw_queries::insert_transaction_observation;
pub(in crate::postgres) use crate::postgres::query::raw_queries::update_raw_payload_lifecycle;
pub(in crate::postgres) use crate::postgres::query::replay_candidate_queries::list_replay_entity_summaries;
pub(in crate::postgres) use crate::postgres::query::replay_candidate_queries::list_replay_program_summaries;
pub(in crate::postgres) use crate::postgres::query::replay_candidate_queries::list_replay_transaction_candidates;
pub(in crate::postgres) use crate::postgres::query::table_diagnostics_queries::load_table_statistics;
pub(in crate::postgres) use crate::postgres::query::table_diagnostics_queries::table_exists;
pub(in crate::postgres) use self::core_extraction_queries::is_core_extraction_current;
pub(in crate::postgres) use self::core_extraction_queries::list_raw_transactions_for_core_extraction;
pub(in crate::postgres) use self::core_extraction_queries::mark_core_extraction_failed;
pub(in crate::postgres) use self::core_extraction_queries::persist_core_extraction;
pub(in crate::postgres) use self::core_queries::apply_core_store_schema;
pub(in crate::postgres) use self::core_queries::insert_core_account_keys;
pub(in crate::postgres) use self::core_queries::insert_core_balance_changes;
pub(in crate::postgres) use self::core_queries::insert_core_inner_instructions;
pub(in crate::postgres) use self::core_queries::insert_core_instructions;
pub(in crate::postgres) use self::core_queries::insert_core_logs;
pub(in crate::postgres) use self::core_queries::insert_core_transaction;
pub(in crate::postgres) use self::core_queries::list_core_instruction_replay_inputs;
pub(in crate::postgres) use self::core_queries::list_core_instructions_for_replay;
pub(in crate::postgres) use self::core_queries::update_core_instruction_lifecycle;
pub(in crate::postgres) use self::decode_pipeline_queries::apply_decode_store_schema;
pub(in crate::postgres) use self::decode_pipeline_queries::is_decode_current;
pub(in crate::postgres) use self::decode_pipeline_queries::list_decode_coverage_summary;
pub(in crate::postgres) use self::decode_pipeline_queries::list_decode_inputs;
pub(in crate::postgres) use self::decode_pipeline_queries::list_materialized_events;
pub(in crate::postgres) use self::decode_pipeline_queries::mark_decode_failed;
pub(in crate::postgres) use self::decode_pipeline_queries::persist_decode_coverage_declarations;
pub(in crate::postgres) use self::decode_pipeline_queries::persist_decode_result;
pub(in crate::postgres) use self::decode_pipeline_queries::persist_materialization_result;
pub(in crate::postgres) use self::health_queries::load_current_schema;
pub(in crate::postgres) use self::health_queries::load_latest_migration_version;
pub(in crate::postgres) use self::health_queries::load_migration_table_name;
pub(in crate::postgres) use self::health_queries::load_server_version;
pub(in crate::postgres) use self::health_queries::run_health_check;
pub(in crate::postgres) use self::raw_queries::apply_raw_store_schema;
pub(in crate::postgres) use self::raw_queries::has_raw_transaction_signature;
pub(in crate::postgres) use self::raw_queries::has_transaction_observation_key;
pub(in crate::postgres) use self::raw_queries::insert_raw_transaction;
pub(in crate::postgres) use self::raw_queries::insert_transaction_observation;
pub(in crate::postgres) use self::raw_queries::update_raw_payload_lifecycle;
pub(in crate::postgres) use self::replay_candidate_queries::list_replay_entity_summaries;
pub(in crate::postgres) use self::replay_candidate_queries::list_replay_program_summaries;
pub(in crate::postgres) use self::replay_candidate_queries::list_replay_transaction_candidates;
pub(in crate::postgres) use self::table_diagnostics_queries::load_table_statistics;
pub(in crate::postgres) use self::table_diagnostics_queries::table_exists;