1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Copyright (C) 2008 Sun Microsystems
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
noinst_LTLIBRARIES = libfunctions.la
libfunctions_la_SOURCES = abs.cc \
acos.cc \
ascii.cc \
asin.cc \
atan.cc \
additive_op.cc \
bit.cc \
bit_count.cc \
char_length.cc \
ceiling.cc \
connection_id.cc \
coercibility.cc \
cos.cc \
decimal_typecast.cc \
divide.cc \
exp.cc \
find_in_set.cc \
floor.cc \
func.cc \
int.cc \
int_divide.cc \
int_val.cc \
length.cc \
ln.cc \
locate.cc \
log.cc \
min_max.cc \
minus.cc \
mod.cc \
multiply.cc \
neg.cc \
num1.cc \
numhybrid.cc \
num_op.cc \
ord.cc \
plus.cc \
pow.cc \
rand.cc \
real.cc \
round.cc \
sign.cc \
signed.cc \
sin.cc \
sqrt.cc \
tan.cc \
units.cc \
unsigned.cc
noinst_HEADERS = abs.h \
acos.h \
ascii.h \
asin.h \
atan.h \
additive_op.h \
bit.h \
bit_count.h \
bit_length.h \
ceiling.h \
char_length.h \
coercibility.h \
connection_id.h \
cos.h \
dec.h \
decimal_typecast.h \
divide.h \
exp.h \
find_in_set.h \
floor.h \
func.h \
int.h \
int_divide.h \
int_val.h \
length.h \
ln.h \
locate.h \
log.h \
min_max.h \
minus.h \
mod.h \
multiply.h \
neg.h \
num1.h \
numhybrid.h \
num_op.h \
ord.h \
plus.h \
pow.h \
real.h \
round.h \
round.h \
sign.h \
signed.h \
sin.h \
sqrt.h \
tan.h \
unsigned.h
DEFS= -DDRIZZLE_SERVER @DEFS@
|