We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1465896 commit 73197dfCopy full SHA for 73197df
src/sql/bind.rs
@@ -64,5 +64,17 @@ mod tests {
64
"`foo`.`bar baz`"
65
);
66
assert_eq!(bind_to_string(ScopedIdentifier("", "bar baz")), "`bar baz`");
67
+
68
+ assert_eq!(
69
+ bind_to_string(ScopedIdentifier("`'.", ".................````")),
70
+ "`\\`\\'.`.`.................\\`\\`\\`\\``"
71
+ );
72
73
74
+ bind_to_string(ScopedIdentifier("クリック", "ハウス")),
75
+ "`クリック`.`ハウス`"
76
77
78
+ assert_eq!(bind_to_string(ScopedIdentifier(" ", " ")), "` `.` `");
79
}
80
0 commit comments