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 e4b27f2 commit 05428adCopy full SHA for 05428ad
src/test/regress/expected/int4.out
@@ -204,6 +204,30 @@ five| f1| x
204
|-2147483647|-1073741823
205
(5 rows)
206
207
+QUERY: SELECT -2+3 AS one;
208
+one
209
+---
210
+ 1
211
+(1 row)
212
+
213
+QUERY: SELECT 4-2 AS two;
214
+two
215
216
+ 2
217
218
219
+QUERY: SELECT 2- -1 AS three;
220
+three
221
+-----
222
+ 3
223
224
225
+QUERY: SELECT 2 - -2 AS four;
226
+four
227
+----
228
+ 4
229
230
231
QUERY: SELECT '2'::int2 * '2'::int2 = '16'::int2 / '4'::int2 AS true;
232
true
233
----
0 commit comments