Skip to content

Commit 0480862

Browse files
committed
Remove utf test from Data API
1 parent b433314 commit 0480862

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

singlestoredb/tests/test_basics.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,6 +1314,9 @@ def test_charset(self):
13141314
select json_extract_string('{"foo":"😀"}', "bar");
13151315
''')
13161316

1317+
if 'http' in self.conn.driver:
1318+
self.skipTest('Charset is not use in HTTP interface')
1319+
13171320
with self.assertRaises(s2.OperationalError):
13181321
with s2.connect(database=type(self).dbname, charset='utf8') as conn:
13191322
with conn.cursor() as cur:

0 commit comments

Comments
 (0)