Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

roachtest: django failed #65691

Closed
cockroach-teamcity opened this issue May 25, 2021 · 41 comments · Fixed by cockroachdb/django-cockroachdb#222
Closed

roachtest: django failed #65691

cockroach-teamcity opened this issue May 25, 2021 · 41 comments · Fixed by cockroachdb/django-cockroachdb#222
Labels
C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. T-sql-foundations SQL Foundations Team (formerly SQL Schema + SQL Sessions)
Milestone

Comments

@cockroach-teamcity
Copy link
Member

roachtest.django failed with artifacts on release-21.1 @ b600d9c2283e19886406e658369e70b5c61a612f:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.1-75-gb600d9c228
		Tests run against django cockroach-3.2.x
		8994 Total Tests Run
		8992 tests passed
		2 tests failed
		611 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity cockroach-teamcity added branch-release-21.1 C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked. labels May 25, 2021
@cockroach-teamcity cockroach-teamcity added this to the 21.1 milestone May 25, 2021
@rafiss rafiss removed the release-blocker Indicates a release-blocker. Use with branch-release-2x.x label to denote which branch is blocked. label May 26, 2021
@rafiss
Copy link
Collaborator

rafiss commented May 26, 2021

@timgraham do you happen to know of anything that would cause these two tests to fail?

		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)

@timgraham
Copy link
Contributor

I can't think of anything offhand. Could you provide the traceback please?

@otan
Copy link
Contributor

otan commented May 26, 2021

======================================================================
ERROR: test_alter_field_db_collation (schema.tests.SchemaTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/mnt/data1/django/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)
psycopg2.errors.FeatureNotSupported: unimplemented: table schema_author is currently undergoing a schema change
HINT:  You have attempted to use a feature that is not yet implemented.
See: https://go.crdb.dev/issue-v/47137/v21.1


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/mnt/data1/django/django/test/testcases.py", line 1315, in skip_wrapper
    return test_func(*args, **kwargs)
  File "/mnt/data1/django/tests/schema/tests.py", line 3747, in test_alter_field_db_collation
    editor.alter_field(Author, new_field, old_field, strict=True)
  File "/mnt/data1/django/django/db/backends/base/schema.py", line 595, in alter_field
    old_db_params, new_db_params, strict)
  File "/usr/local/lib/python3.7/dist-packages/django_cockroachdb/schema.py", line 52, in _alter_field
    new_db_params, strict,
  File "/mnt/data1/django/django/db/backends/base/schema.py", line 756, in _alter_field
    params,
  File "/mnt/data1/django/django/db/backends/base/schema.py", line 145, in execute
    cursor.execute(sql, params)
  File "/mnt/data1/django/django/db/backends/utils.py", line 66, in execute
    return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
  File "/mnt/data1/django/django/db/backends/utils.py", line 75, in _execute_with_wrappers
    return executor(sql, params, many, context)
  File "/mnt/data1/django/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)
  File "/mnt/data1/django/django/db/utils.py", line 90, in __exit__
    raise dj_exc_value.with_traceback(traceback) from exc_value
  File "/mnt/data1/django/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)
django.db.utils.NotSupportedError: unimplemented: table schema_author is currently undergoing a schema change
HINT:  You have attempted to use a feature that is not yet implemented.
See: https://go.crdb.dev/issue-v/47137/v21.1


======================================================================
ERROR: test_alter_field_type_and_db_collation (schema.tests.SchemaTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/mnt/data1/django/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)
psycopg2.errors.FeatureNotSupported: unimplemented: table schema_note is currently undergoing a schema change
HINT:  You have attempted to use a feature that is not yet implemented.
See: https://go.crdb.dev/issue-v/47137/v21.1


The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/mnt/data1/django/django/test/testcases.py", line 1315, in skip_wrapper
    return test_func(*args, **kwargs)
  File "/mnt/data1/django/tests/schema/tests.py", line 3772, in test_alter_field_type_and_db_collation
    editor.alter_field(Note, new_field, old_field, strict=True)
  File "/mnt/data1/django/django/db/backends/base/schema.py", line 595, in alter_field
    old_db_params, new_db_params, strict)
  File "/usr/local/lib/python3.7/dist-packages/django_cockroachdb/schema.py", line 52, in _alter_field
    new_db_params, strict,
  File "/mnt/data1/django/django/db/backends/base/schema.py", line 756, in _alter_field
    params,
  File "/mnt/data1/django/django/db/backends/base/schema.py", line 145, in execute
    cursor.execute(sql, params)
  File "/mnt/data1/django/django/db/backends/utils.py", line 66, in execute
    return self._execute_with_wrappers(sql, params, many=False, executor=self._execute)
  File "/mnt/data1/django/django/db/backends/utils.py", line 75, in _execute_with_wrappers
    return executor(sql, params, many, context)
  File "/mnt/data1/django/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)
  File "/mnt/data1/django/django/db/utils.py", line 90, in __exit__
    raise dj_exc_value.with_traceback(traceback) from exc_value
  File "/mnt/data1/django/django/db/backends/utils.py", line 84, in _execute
    return self.cursor.execute(sql, params)
django.db.utils.NotSupportedError: unimplemented: table schema_note is currently undergoing a schema change
HINT:  You have attempted to use a feature that is not yet implemented.
See: https://go.crdb.dev/issue-v/47137/v21.1

looks like any ALTER TYPE tests should not be run in parallel with other tests

@timgraham
Copy link
Contributor

I can reproduce these failures with the CockroachDB master branch and I'd guess that the cause was backported to the release-21.1 branch after the 21.1.1 release as these test pass with that version.

These tests don't run in parallel. This may be a bug in CockroachDB. I'll provide the exact steps to reproduce if needed.

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 15a6a314706eb15fb094feb6956600a9b864451b:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.1-105-g15a6a31470-dirty
		Tests run against django cockroach-3.2.x
		8994 Total Tests Run
		8993 tests passed
		1 test failed
		611 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 587aaedda1a00fe03dd16317ec6da329f69a3ac9:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.1-120-g587aaedda1
		Tests run against django cockroach-3.2.x
		8994 Total Tests Run
		8992 tests passed
		2 tests failed
		611 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 1e2234a8449f6fe886387128dc5103866c4d244e:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.1-252-g1e2234a844
		Tests run against django cockroach-3.2.x
		8994 Total Tests Run
		8992 tests passed
		2 tests failed
		611 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@timgraham
Copy link
Contributor

These tests don't fail every time.

Both tests executes two ALTER TABLE .. ALTER COLUMN statements. CockroachDB gives this warning after the first query: NOTICE: ALTER COLUMN TYPE changes are finalized asynchronously; further schema changes on this table may be restricted until the job completes; some writes to the altered column may be rejected until the schema change is finalized and then the failure happens on the second query. Presumably the first query hasn't completed.

Is this a new behavior since 21.1.1? It's incompatible with Django's migration framework which assumes that each query completes synchronously.

@RichardJCai
Copy link
Contributor

These tests don't fail every time.

Both tests executes two ALTER TABLE .. ALTER COLUMN statements. CockroachDB gives this warning after the first query: NOTICE: ALTER COLUMN TYPE changes are finalized asynchronously; further schema changes on this table may be restricted until the job completes; some writes to the altered column may be rejected until the schema change is finalized and then the failure happens on the second query. Presumably the first query hasn't completed.

Is this a new behavior since 21.1.1? It's incompatible with Django's migration framework which assumes that each query completes synchronously.

It isn't exactly new behaviour but this type of schema change was disabled in a point release for 20.2. On the latest 20.2 version it would've disallowed the change and the command would fail.

@timgraham
Copy link
Contributor

Right. I've managed to reproduce this with 21.1.0, so my guess that this is some regression since 21.1.1 isn't correct. It seems that the non-deterministic nature of the failure is the only reason we haven't seen it in other TeamCity builds.

@RichardJCai
Copy link
Contributor

Right. I've managed to reproduce this with 21.1.0, so my guess that this is some regression since 21.1.1 isn't correct. It seems that the non-deterministic nature of the failure is the only reason we haven't seen it in other TeamCity builds.

We can sort of wait for the schema change to finish by checking if the underlying JOB is done. Not sure what other options we have to check if the schema change is done.

@RichardJCai
Copy link
Contributor

This is probably not just specific to tests to - the Django code does expect the schema change the finish synchronously whereas that's not what's happening. Certain inserts that are expected to work if the schema change is synchronous will fail.

@timgraham
Copy link
Contributor

Correct. If feasible, perhaps you could add a SET query to control whether ALTER queries run synchronously or asynchronously? For now, I'll add these (sometimes) failing tests to the list of expected failures to close this issue.

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 00b770d51383793d83c6c886357788dc211f7158:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.1-288-g00b770d513
		Tests run against django cockroach-3.2.x
		8994 Total Tests Run
		8992 tests passed
		2 tests failed
		611 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ ac27d325ed08b76408e3bfdec3707c74d5a1c565:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.1-305-gac27d325ed
		Tests run against django cockroach-3.2.x
		8994 Total Tests Run
		8992 tests passed
		2 tests failed
		611 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ d8f279692a7c23013dacb774df231d51d9c6cd35:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-67-gd8f279692a
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		9000 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@timgraham
Copy link
Contributor

The skips are merged. I guess this ssue didn't auto-close because I don't have permissions to this repo.

And it looks like #47137 is suitable as the follow up issue.

@rafiss
Copy link
Collaborator

rafiss commented Jun 8, 2021

We'll also need to update the crdb nightly test to use a newer version of django-cockroachdb (which means that we'd also have to publish a new version of django-cockroachdb). since the change was testing only, I don't know if publishing a new version is warranted..

@timgraham
Copy link
Contributor

Oh, I figured it used the master branch of django-cockroachdb. I agree it seems unnecessary to release a new package so I'll just unsubscribe from this issue to avoid the occasional pings.

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 62ea894aa0cd36435e43c7ce09ac5ebef91be78e:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-79-g62ea894aa0
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		9000 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 3da8bae2842269ad9ce72b22501293b2efcd3a71:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-94-g3da8bae284
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		9000 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 10abf6e8bc246ec5c8b32ddc973f434595a46e5b:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-122-g10abf6e8bc
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		9000 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 8cd2c9de5d5539e4837d6daa12a7b5c799554aca:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-139-g8cd2c9de5d
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		9000 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ af2c90b391faa0e0256b96269a0e3c2e29a0ca7b:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-153-gaf2c90b391
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		8999 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@jlinder jlinder added the T-sql-foundations SQL Foundations Team (formerly SQL Schema + SQL Sessions) label Jun 16, 2021
@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ e8671f5785c19039945459cc630c527d03f59d2e:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-174-ge8671f5785
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		9000 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 4d113ce4e43672d60e0473831c02229583f18119:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-188-g4d113ce4e4
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		8999 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 2d94ccf10cd0fefd113ec48261705f8810990cf3:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.2-192-g2d94ccf10c-dirty
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		8999 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 6267da0f19b6cdc08e9fdd39899e35212694cb78:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.3-53-g6267da0f19
		Tests run against django cockroach-3.2.x
		9001 Total Tests Run
		8999 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ f60fbf28b0bb6110cf9870cc398ea169b81ff8f0:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.3-63-gf60fbf28b0
		Tests run against django cockroach-3.2.x
		9003 Total Tests Run
		9002 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 92e342b8f0032a5771d3e50932df4c6d7d85fe41:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:767: 
		Tests run on Cockroach v21.1.3-73-g92e342b8f0
		Tests run against django cockroach-3.2.x
		9003 Total Tests Run
		9001 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ c38781390f0d07cf3d39d1af9ed01b4e370aaffa:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:728: 
		Tests run on Cockroach v21.1.3-120-gc38781390f
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9002 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ ede1628bd625a07b3f966a36ea841009803fc8a9:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:728: 
		Tests run on Cockroach v21.1.3-122-gede1628bd6
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9003 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 5e8abbb1796889f75550fef774632b1bb2dfa87b:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:730: 
		Tests run on Cockroach v21.1.4-82-g5e8abbb179
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9003 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ a866c9fe3948bcfcd028b94fc06afda7268fa985:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:730: 
		Tests run on Cockroach v21.1.4-84-ga866c9fe39
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9002 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 21b5b06ea907f4adf0fef3318848e28f454138ea:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:730: 
		Tests run on Cockroach v21.1.4-86-g21b5b06ea9
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9003 tests passed
		1 test failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		1 test failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 32273aa49ce7006677bb1b4a0003b4ed8ac8b455:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:730: 
		Tests run on Cockroach v21.1.4-92-g32273aa49c
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9002 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 4bdd64a13faabc2024969f68d3bca17feacb5147:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:733: 
		Tests run on Cockroach v21.1.4-97-g4bdd64a13f
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9002 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ b7eaf3b47c220003b3d949af6d48d220c5f92db4:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:733: 
		Tests run on Cockroach v21.1.4-99-gb7eaf3b47c
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9002 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 3ee6d71402938c32c266243cffd94c2c1d7bef9a:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:733: 
		Tests run on Cockroach v21.1.4-105-g3ee6d71402
		Tests run against django cockroach-3.2.x
		9004 Total Tests Run
		9002 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ a59bb25a0c234e1752aa201fc8d6ccc4683c16b1:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:733: 
		Tests run on Cockroach v21.1.4-129-ga59bb25a0c
		Tests run against django cockroach-3.2.x
		9005 Total Tests Run
		9003 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

@cockroach-teamcity
Copy link
Member Author

roachtest.django failed with artifacts on release-21.1 @ 03b83e02502e8876ecb366659156ab00f7431a51:

The test failed on branch=release-21.1, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/django/run_1
	orm_helpers.go:228,orm_helpers.go:154,django.go:204,django.go:216,test_runner.go:733: 
		Tests run on Cockroach v21.1.4-136-g03b83e0250
		Tests run against django cockroach-3.2.x
		9005 Total Tests Run
		9003 tests passed
		2 tests failed
		612 tests skipped
		21 tests ignored
		0 tests passed unexpectedly
		2 tests failed unexpectedly
		0 tests expected failed but skipped
		0 tests expected failed but not run
		---
		--- FAIL: schema.tests.SchemaTests.test_alter_field_type_and_db_collation (unexpected)
		--- SKIP: backends.mysql.test_creation.DatabaseCreationTests.test_create_test_db_unexpected_error due to MySQL tests (expected)
		--- FAIL: schema.tests.SchemaTests.test_alter_field_db_collation (unexpected)
		For a full summary look at the django artifacts 
		
		An updated blocklist (djangoBlocklist21_1) is available in the artifacts' django log
Reproduce

To reproduce, try:

# From https://go.crdb.dev/p/roachstress, perhaps edited lightly.
caffeinate ./roachstress.sh django

Same failure on other branches

/cc @cockroachdb/sql-experience

This test on roachdash | Improve this report!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-test-failure Broken test (automatically or manually discovered). O-roachtest O-robot Originated from a bot. T-sql-foundations SQL Foundations Team (formerly SQL Schema + SQL Sessions)
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants