8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 06:03:02 +01:00
This commit is contained in:
eku 2003-02-18 07:43:29 +00:00
parent 9970a817cd
commit 2f4223647a

View File

@ -25,7 +25,7 @@
//
//____________________________________________________________
//
// $Id: exp.cpp,v 1.9 2002-12-06 13:43:09 eku Exp $
// $Id: exp.cpp,v 1.10 2003-02-18 07:43:29 eku Exp $
//
#include "firebird.h"
@ -102,7 +102,9 @@ static struct rel_ops {
{ nod_like, KW_LIKE, 2 },
{ nod_starting, KW_STARTING, 2 },
{ nod_missing, KW_MISSING, 1 },
{ nod_between, KW_BETWEEN, 3}, { nod_any, KW_none, 0} };
{ nod_between, KW_BETWEEN, 3},
{ nod_any, KW_none, 0}
};
static struct dtypes {
enum kwwords dtype_keyword;
@ -117,7 +119,8 @@ static struct dtypes {
{ KW_FLOAT, dtype_real },
{ KW_DOUBLE, dtype_double },
{ KW_DATE, dtype_date },
{ KW_none, 0} };
{ KW_none, 0}
};
//____________________________________________________________