diff options
Diffstat (limited to 'tests/testdata/fmt/badly_formatted.sql')
-rw-r--r-- | tests/testdata/fmt/badly_formatted.sql | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/testdata/fmt/badly_formatted.sql b/tests/testdata/fmt/badly_formatted.sql new file mode 100644 index 000000000..8b4cb978f --- /dev/null +++ b/tests/testdata/fmt/badly_formatted.sql @@ -0,0 +1,21 @@ +select * from foo; +update foo set a = 'b'Where id = 'biz'; + + + create table foo(id text not null +bar text, + biz int, + buz number NOT NULL +); + +INSERT + into + user_data + (first_name, +last_name, address, phone, email) +VALUES + ('foo', 'bar', + 'biz', 1, 'bix'); + + + |