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 4ef40e0 commit 6622304Copy full SHA for 6622304
test/duckdb.test.ts
@@ -168,6 +168,18 @@ describe('DuckDBFormatter', () => {
168
`);
169
});
170
171
+ // TODO: This currently conflicts with the modulo operator
172
+ it.skip('formats percentage value in LIMIT clause', () => {
173
+ expect(format('SELECT * FROM foo LIMIT 10%;')).toBe(dedent`
174
+ SELECT
175
+ *
176
+ FROM
177
+ foo
178
+ LIMIT
179
+ 10%;
180
+ `);
181
+ });
182
+
183
it('formats TIMESTAMP WITH TIME ZONE syntax', () => {
184
expect(
185
format(`
0 commit comments