Skip to content

Commit 8573373

Browse files
Fix command with one %
1 parent cce29df commit 8573373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlestoredb/tests/test_fusion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def test_show_commands(self):
7979
assert cmds
8080
assert [x for x in cmds if x.strip().startswith('SHOW FUSION GRAMMAR')], cmds
8181

82-
self.cur.execute('show fusion commands like "create%"')
82+
self.cur.execute('show fusion commands like "create%%"')
8383
cmds = [x[0] for x in self.cur.fetchall()]
8484
assert cmds
8585
assert [x for x in cmds if x.strip().startswith('CREATE')] == cmds, cmds

0 commit comments

Comments
 (0)