We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccfe061 commit dce65e9Copy full SHA for dce65e9
1 file changed
singlestoredb/tests/test_basics.py
@@ -977,6 +977,11 @@ def _test_MySQLdb(self):
977
for a, b in zip(s2_out, mydb_out):
978
assert a == b, (a, b)
979
980
+ def test_long_string(self):
981
+ string = 'a' * 48
982
+ self.cur.execute(f"SELECT 1 AS column_1, '{string}' AS column_2")
983
+ self.assertEqual((1, string), self.cur.fetchone())
984
+
985
986
if __name__ == '__main__':
987
import nose2
0 commit comments