- Notifications
You must be signed in to change notification settings - Fork28
Commite87d496
committed
Prevent to_number() from losing data when template doesn't match exactly.
Non-data template patterns would consume characters whether or not thosecharacters were what the pattern expected, for exampleSELECT TO_NUMBER('1234', '9,999');produced 134 because the '2' got eaten by the comma pattern. This seemsundesirable, not least because it doesn't happen in Oracle. For the ','and 'G' template patterns, we can fix this by consuming characters onlyif they match what the pattern would output. For non-data patterns suchas 'L' and 'TH', it seems impractical to tighten things up to the point ofconsuming only exact matches to what the pattern would output; but we canimprove matters quite a lot by redefining the behavior as "consume onlycharacters that aren't digits, signs, decimal point, or comma".Also, fix it so that the behavior is to consume the number of *characters*the pattern would output, not the number of *bytes*. The old coding woulddo surprising things with non-ASCII currency symbols, for example. (Itwould be good to apply that rule for literal text as well, but this commitonly fixes it for non-data patterns.)Oliver Ford, reviewed by Thomas Munro and Nathan Wagner, and whacked arounda bit more by meDiscussion:https://postgr.es/m/CAGMVOdvpbMqPf9XWNzOwBpzJfErkydr_fEGhmuDGa015z97mwg@mail.gmail.com1 parentbe92769 commite87d496
File tree
4 files changed
+197
-32
lines changed- doc/src/sgml
- src
- backend/utils/adt
- test/regress
- expected
- sql
4 files changed
+197
-32
lines changedLines changed: 22 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5850 | 5850 |
| |
5851 | 5851 |
| |
5852 | 5852 |
| |
5853 |
| - | |
| 5853 | + | |
| 5854 | + | |
| 5855 | + | |
| 5856 | + | |
5854 | 5857 |
| |
5855 | 5858 |
| |
5856 | 5859 |
| |
| |||
6176 | 6179 |
| |
6177 | 6180 |
| |
6178 | 6181 |
| |
6179 |
| - | |
| 6182 | + | |
6180 | 6183 |
| |
6181 | 6184 |
| |
6182 |
| - | |
6183 |
| - | |
6184 |
| - | |
6185 |
| - | |
| 6185 | + | |
| 6186 | + | |
| 6187 | + | |
| 6188 | + | |
| 6189 | + | |
| 6190 | + | |
6186 | 6191 |
| |
6187 | 6192 |
| |
6188 | 6193 |
| |
| |||
6483 | 6488 |
| |
6484 | 6489 |
| |
6485 | 6490 |
| |
| 6491 | + | |
| 6492 | + | |
| 6493 | + | |
| 6494 | + | |
| 6495 | + | |
| 6496 | + | |
| 6497 | + | |
| 6498 | + | |
| 6499 | + | |
| 6500 | + | |
| 6501 | + | |
6486 | 6502 |
| |
6487 | 6503 |
| |
6488 | 6504 |
| |
|
Lines changed: 108 additions & 26 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
988 | 988 |
| |
989 | 989 |
| |
990 | 990 |
| |
991 |
| - | |
| 991 | + | |
992 | 992 |
| |
993 | 993 |
| |
994 | 994 |
| |
| |||
4232 | 4232 |
| |
4233 | 4233 |
| |
4234 | 4234 |
| |
| 4235 | + | |
| 4236 | + | |
| 4237 | + | |
| 4238 | + | |
| 4239 | + | |
| 4240 | + | |
| 4241 | + | |
| 4242 | + | |
4235 | 4243 |
| |
4236 | 4244 |
| |
4237 | 4245 |
| |
| |||
4246 | 4254 |
| |
4247 | 4255 |
| |
4248 | 4256 |
| |
4249 |
| - | |
4250 |
| - | |
4251 |
| - | |
4252 | 4257 |
| |
4253 | 4258 |
| |
4254 | 4259 |
| |
| |||
4641 | 4646 |
| |
4642 | 4647 |
| |
4643 | 4648 |
| |
| 4649 | + | |
| 4650 | + | |
| 4651 | + | |
| 4652 | + | |
| 4653 | + | |
| 4654 | + | |
| 4655 | + | |
| 4656 | + | |
| 4657 | + | |
| 4658 | + | |
| 4659 | + | |
| 4660 | + | |
| 4661 | + | |
| 4662 | + | |
| 4663 | + | |
| 4664 | + | |
4644 | 4665 |
| |
4645 | 4666 |
| |
4646 |
| - | |
| 4667 | + | |
4647 | 4668 |
| |
4648 | 4669 |
| |
4649 | 4670 |
| |
4650 | 4671 |
| |
4651 | 4672 |
| |
| 4673 | + | |
| 4674 | + | |
4652 | 4675 |
| |
4653 | 4676 |
| |
4654 | 4677 |
| |
| |||
4816 | 4839 |
| |
4817 | 4840 |
| |
4818 | 4841 |
| |
4819 |
| - | |
| 4842 | + | |
| 4843 | + | |
| 4844 | + | |
4820 | 4845 |
| |
4821 |
| - | |
| 4846 | + | |
4822 | 4847 |
| |
4823 | 4848 |
| |
4824 | 4849 |
| |
| |||
4828 | 4853 |
| |
4829 | 4854 |
| |
4830 | 4855 |
| |
4831 |
| - | |
| 4856 | + | |
4832 | 4857 |
| |
4833 | 4858 |
| |
4834 | 4859 |
| |
4835 |
| - | |
4836 |
| - | |
| 4860 | + | |
| 4861 | + | |
| 4862 | + | |
| 4863 | + | |
| 4864 | + | |
| 4865 | + | |
4837 | 4866 |
| |
4838 | 4867 |
| |
4839 | 4868 |
| |
| |||
4848 | 4877 |
| |
4849 | 4878 |
| |
4850 | 4879 |
| |
4851 |
| - | |
| 4880 | + | |
4852 | 4881 |
| |
4853 | 4882 |
| |
4854 | 4883 |
| |
| |||
4872 | 4901 |
| |
4873 | 4902 |
| |
4874 | 4903 |
| |
| 4904 | + | |
| 4905 | + | |
4875 | 4906 |
| |
4876 | 4907 |
| |
4877 | 4908 |
| |
4878 | 4909 |
| |
| 4910 | + | |
| 4911 | + | |
4879 | 4912 |
| |
4880 | 4913 |
| |
4881 | 4914 |
| |
| |||
4884 | 4917 |
| |
4885 | 4918 |
| |
4886 | 4919 |
| |
4887 |
| - | |
4888 |
| - | |
4889 |
| - | |
4890 |
| - | |
| 4920 | + | |
| 4921 | + | |
| 4922 | + | |
| 4923 | + | |
4891 | 4924 |
| |
4892 | 4925 |
| |
4893 | 4926 |
| |
4894 | 4927 |
| |
4895 |
| - | |
4896 |
| - | |
| 4928 | + | |
| 4929 | + | |
4897 | 4930 |
| |
4898 | 4931 |
| |
4899 | 4932 |
| |
| |||
4903 | 4936 |
| |
4904 | 4937 |
| |
4905 | 4938 |
| |
4906 |
| - | |
| 4939 | + | |
| 4940 | + | |
| 4941 | + | |
| 4942 | + | |
| 4943 | + | |
| 4944 | + | |
| 4945 | + | |
| 4946 | + | |
| 4947 | + | |
| 4948 | + | |
| 4949 | + | |
| 4950 | + | |
4907 | 4951 |
| |
4908 | 4952 |
| |
4909 | 4953 |
| |
4910 | 4954 |
| |
| 4955 | + | |
4911 | 4956 |
| |
4912 | 4957 |
| |
4913 |
| - | |
4914 |
| - | |
| 4958 | + | |
| 4959 | + | |
4915 | 4960 |
| |
4916 | 4961 |
| |
4917 |
| - | |
| 4962 | + | |
| 4963 | + | |
| 4964 | + | |
| 4965 | + | |
4918 | 4966 |
| |
4919 | 4967 |
| |
4920 | 4968 |
| |
| |||
4949 | 4997 |
| |
4950 | 4998 |
| |
4951 | 4999 |
| |
| 5000 | + | |
4952 | 5001 |
| |
4953 |
| - | |
| 5002 | + | |
| 5003 | + | |
| 5004 | + | |
| 5005 | + | |
| 5006 | + | |
| 5007 | + | |
| 5008 | + | |
| 5009 | + | |
4954 | 5010 |
| |
4955 | 5011 |
| |
4956 | 5012 |
| |
| |||
4959 | 5015 |
| |
4960 | 5016 |
| |
4961 | 5017 |
| |
| 5018 | + | |
4962 | 5019 |
| |
4963 |
| - | |
| 5020 | + | |
| 5021 | + | |
| 5022 | + | |
| 5023 | + | |
| 5024 | + | |
| 5025 | + | |
| 5026 | + | |
| 5027 | + | |
4964 | 5028 |
| |
4965 | 5029 |
| |
4966 | 5030 |
| |
| |||
4977 | 5041 |
| |
4978 | 5042 |
| |
4979 | 5043 |
| |
| 5044 | + | |
| 5045 | + | |
| 5046 | + | |
| 5047 | + | |
| 5048 | + | |
4980 | 5049 |
| |
4981 | 5050 |
| |
4982 | 5051 |
| |
| |||
4994 | 5063 |
| |
4995 | 5064 |
| |
4996 | 5065 |
| |
| 5066 | + | |
| 5067 | + | |
| 5068 | + | |
| 5069 | + | |
| 5070 | + | |
4997 | 5071 |
| |
4998 | 5072 |
| |
4999 | 5073 |
| |
5000 | 5074 |
| |
5001 | 5075 |
| |
5002 | 5076 |
| |
5003 |
| - | |
5004 | 5077 |
| |
5005 | 5078 |
| |
5006 | 5079 |
| |
5007 | 5080 |
| |
5008 | 5081 |
| |
5009 | 5082 |
| |
| 5083 | + | |
| 5084 | + | |
| 5085 | + | |
| 5086 | + | |
| 5087 | + | |
5010 | 5088 |
| |
5011 | 5089 |
| |
5012 | 5090 |
| |
5013 |
| - | |
5014 | 5091 |
| |
5015 | 5092 |
| |
5016 | 5093 |
| |
| |||
5019 | 5096 |
| |
5020 | 5097 |
| |
5021 | 5098 |
| |
5022 |
| - | |
| 5099 | + | |
| 5100 | + | |
| 5101 | + | |
| 5102 | + | |
| 5103 | + | |
| 5104 | + | |
5023 | 5105 |
| |
5024 | 5106 |
| |
5025 | 5107 |
| |
|
0 commit comments
Comments
(0)