Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def test_space(self, dbe: DbEvaluator) -> None:
assert (
to_str(dbe.eval("SPACE(4)")) == " "
) # SPACE(<int literal>) is evaluated in Python rather than in the DB,
assert to_str(dbe.eval("SPACE(2 + 2)")) == " " # while this version actually uses the DB function(s)
assert to_str(dbe.eval("SPACE(LEN('aaaa'))")) == " " # while this version actually uses the DB function(s)

def test_split_3(self, dbe: DbEvaluator, data_table: sa.Table) -> None:
if not self.supports_split_3:
Expand Down
Loading