|
35 | 35 | from sentry.testutils.cases import SnubaTestCase, TestCase, TransactionTestCase
|
36 | 36 | from sentry.testutils.helpers import Feature, apply_feature_flag_on_cls
|
37 | 37 | from sentry.testutils.helpers.datetime import before_now, iso_format
|
38 |
| -from sentry.testutils.skips import xfail_if_not_postgres |
39 | 38 | from sentry.types.group import GroupSubStatus, PriorityLevel
|
40 | 39 | from sentry.utils import json
|
41 | 40 | from sentry.utils.snuba import SENTRY_SNUBA_MAP
|
@@ -121,7 +120,7 @@ def setUp(self):
|
121 | 120 | data={
|
122 | 121 | "fingerprint": ["put-me-in-group1"],
|
123 | 122 | "event_id": "a" * 32,
|
124 |
| - "message": "foo. Also, this message is intended to be greater than 256 characters so that we can put some unique string identifier after that point in the string. The purpose of this is in order to verify we are using snuba to search messages instead of Postgres (postgres truncates at 256 characters and clickhouse does not). santryrox.", |
| 123 | + "message": "foo. Indeed, this message is intended to be greater than 256 characters such that we can put this unique string identifier after that point in the string. The purpose of this is in order to verify we are using snuba to search messages instead of Postgres (postgres truncates at 256 characters and clickhouse does not). santryrox.", |
125 | 124 | "environment": "production",
|
126 | 125 | "tags": { "server": "example.com", "sentry:user": "[email protected]"},
|
127 | 126 | "timestamp": event1_timestamp,
|
@@ -2120,7 +2119,6 @@ def test_query_enclosed_in_quotes(self):
|
2120 | 2119 | results = self.make_query(search_filter_query='"bar"')
|
2121 | 2120 | assert set(results) == {self.group2}
|
2122 | 2121 |
|
2123 |
| - @xfail_if_not_postgres("Wildcard searching only supported in Postgres") |
2124 | 2122 | def test_wildcard(self):
|
2125 | 2123 | escaped_event = self.store_event(
|
2126 | 2124 | data={
|
|
0 commit comments