forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commita349733

Thomas G. Lockhart
Add transcendental math functions (sine, cosine, etc)
Add a random number generator and seed setter (random(), SET SEED)Fix up the interval*float8 math to carry partial months into the time field.Add float8*interval so we have symmetry in the available math.Fix the parser and define.c to accept SQL92 types as field arguments.Fix the parser to accept SQL92 types for CREATE TYPE, etc. This is necessary to allow...Bit/varbit support in contrib/bit cleaned up to compile and load cleanly. Still needs some work before final release.Implement the "SOME" keyword as a synonym for "ANY" per SQL92.Implement ascii(text), ichar(int4), repeat(text,int4) to help support the ODBC driver.Enable the TRUNCATE() function mapping in the ODBC driver.1 parent1b992b4 commita349733
File tree
14 files changed
+639
-196
lines changed- src
- backend
- commands
- parser
- utils/adt
- include
- catalog
- utils
- interfaces/odbc
- test/regress
14 files changed
+639
-196
lines changedLines changed: 21 additions & 13 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 |
| - | |
| 13 | + | |
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
| |||
377 | 377 |
| |
378 | 378 |
| |
379 | 379 |
| |
380 |
| - | |
381 |
| - | |
| 380 | + | |
| 381 | + | |
382 | 382 |
| |
383 | 383 |
| |
384 |
| - | |
385 |
| - | |
386 |
| - | |
| 384 | + | |
| 385 | + | |
387 | 386 |
| |
388 | 387 |
| |
389 | 388 |
| |
390 | 389 |
| |
391 |
| - | |
392 |
| - | |
| 390 | + | |
| 391 | + | |
393 | 392 |
| |
394 | 393 |
| |
395 |
| - | |
396 |
| - | |
397 |
| - | |
| 394 | + | |
| 395 | + | |
398 | 396 |
| |
399 | 397 |
| |
400 | 398 |
| |
| |||
700 | 698 |
| |
701 | 699 |
| |
702 | 700 |
| |
703 |
| - | |
| 701 | + | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
| 709 | + | |
704 | 710 |
| |
705 |
| - | |
| 711 | + | |
| 712 | + | |
| 713 | + | |
706 | 714 |
| |
707 | 715 |
| |
708 | 716 |
| |
|
Lines changed: 42 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
12 |
| - | |
| 12 | + | |
13 | 13 |
| |
14 | 14 |
| |
15 | 15 |
| |
| |||
93 | 93 |
| |
94 | 94 |
| |
95 | 95 |
| |
| 96 | + | |
| 97 | + | |
| 98 | + | |
96 | 99 |
| |
97 | 100 |
| |
98 | 101 |
| |
| |||
1066 | 1069 |
| |
1067 | 1070 |
| |
1068 | 1071 |
| |
| 1072 | + | |
| 1073 | + | |
| 1074 | + | |
| 1075 | + | |
| 1076 | + | |
| 1077 | + | |
| 1078 | + | |
| 1079 | + | |
| 1080 | + | |
| 1081 | + | |
| 1082 | + | |
| 1083 | + | |
| 1084 | + | |
| 1085 | + | |
| 1086 | + | |
| 1087 | + | |
| 1088 | + | |
| 1089 | + | |
| 1090 | + | |
| 1091 | + | |
| 1092 | + | |
| 1093 | + | |
| 1094 | + | |
| 1095 | + | |
| 1096 | + | |
| 1097 | + | |
| 1098 | + | |
| 1099 | + | |
| 1100 | + | |
| 1101 | + | |
| 1102 | + | |
| 1103 | + | |
| 1104 | + | |
| 1105 | + | |
| 1106 | + | |
1069 | 1107 |
| |
1070 | 1108 |
| |
1071 | 1109 |
| |
| |||
1155 | 1193 |
| |
1156 | 1194 |
| |
1157 | 1195 |
| |
| 1196 | + | |
| 1197 | + | |
| 1198 | + | |
1158 | 1199 |
| |
1159 | 1200 |
| |
1160 | 1201 |
| |
|
0 commit comments
Comments
(0)