blob: 5b3709b91965d943bb50e32aac0787d60965e113 [file] [log] [blame]
# Copyright 2011-2015 Quickstep Technologies LLC.
# Copyright 2015 Pivotal Software, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Both assignments need coercion.
UPDATE test
SET float_col = 2,
double_col = float_col/2
WHERE int_col < -10;
SELECT float_col,
float_col/2,
double_col
FROM test
WHERE int_col < -20
OR int_col > 20;
--
+---------------+---------------+------------------------+
|float_col |(float_col/2) |double_col |
+---------------+---------------+------------------------+
| 2| 1| 2.291287899017334|
| 4.69041586| 2.34520793| 103.18914671611546|
| 2| 1| 2.3979158401489258|
| 4.89897966| 2.44948983| 117.57550765359254|
+---------------+---------------+------------------------+