Update rake requirement from ~> 13.0.0 to ~> 13.1.0 #90
Annotations
10 errors
spec/statesman/adapters/active_record_spec.rb#L451
Statesman::Adapters::ActiveRecord resets last with #reload
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L446
Statesman::Adapters::ActiveRecord#reset works with empty cache
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L428
Statesman::Adapters::ActiveRecord#last with a pre-fetched transition history doesn't query the database
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L435
Statesman::Adapters::ActiveRecord#last without previous transitions does query the database only once
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L370
Statesman::Adapters::ActiveRecord#last with a previously looked up transition caches the transition
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L389
Statesman::Adapters::ActiveRecord#last with a previously looked up transition when a new transition has been created elsewhere still returns the cached value
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L404
Statesman::Adapters::ActiveRecord#last with a previously looked up transition when a new transition has been created elsewhere when explicitly not using the cache when the transitions are in memory reloads the value
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L415
Statesman::Adapters::ActiveRecord#last with a previously looked up transition when a new transition has been created elsewhere when explicitly not using the cache when the transitions are not in memory reloads the value
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L379
Statesman::Adapters::ActiveRecord#last with a previously looked up transition after then creating a new transition retrieves the new transition from the database
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
spec/statesman/adapters/active_record_spec.rb#L185
Statesman::Adapters::ActiveRecord#create when other exceptions occur other errors
Failure/Error:
add_index :my_active_record_model_transitions,
%i[my_active_record_model_id most_recent],
unique: true,
where: "most_recent",
name: "index_my_active_record_model_transitions_parent_latest"
ActiveRecord::StatementInvalid:
PG::UndefinedColumn: ERROR: column a.attidentity does not exist
LINE 4: a.attidentity AS identity,
^
|
The logs for this run have expired and are no longer available.
Loading