You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cleanup useless code, update overriden methods.
Add a `#supports_native_partitioning? => false` method
Add timezone to quoted dates to comply with postgresql
way of parsing `timestamp with timezone`.
Add `#show_create` test.
Add test tool for excluding tests by name from
transactional tests.
Update CI.
Fixes#354
Copy file name to clipboardExpand all lines: test/cases/helper_cockroachdb.rb
+10-12Lines changed: 10 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,11 @@
1
1
require'bundler'
2
2
Bundler.setup
3
3
4
-
CRDB_VALIDATE_BUG="CockcroachDB bug, see https://github.com/cockroachdb/cockroach/blob/dd1e0e0164cb3d5859ea4bb23498863d1eebc0af/pkg/sql/alter_table.go#L458-L467"
4
+
moduleExcludeMessage
5
+
VALIDATE_BUG="CockcroachDB bug, see https://github.com/cockroachdb/cockroach/blob/dd1e0e0164cb3d5859ea4bb23498863d1eebc0af/pkg/sql/alter_table.go#L458-L467"
6
+
NO_HSTORE="Extension \"hstore\" is not yet supported by CRDB. See https://github.com/cockroachdb/cockroach/issues/41284"
7
+
end
8
+
5
9
require"minitest/excludes"
6
10
require"minitest/github_action_reporter"
7
11
@@ -17,24 +21,13 @@
17
21
# and COCKROACH_SKIP_LOAD_SCHEMA that can
18
22
# skip this step
19
23
require"support/load_schema_helper"
20
-
classNoPGSchemaTestCase < SimpleDelegator
21
-
defcurrent_adapter?(...)
22
-
false
23
-
end
24
-
end
25
24
26
25
moduleLoadSchemaHelperExt
27
26
defload_schema
28
-
# TODO: Remove this const_set mess once https://github.com/rails/rails/commit/d5c2ff8345c9d23b7326edb2bbe72b6e86a63140
0 commit comments