summaryrefslogtreecommitdiffstats
path: root/kexi/kexidb/parser/sqlparser.y
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/kexidb/parser/sqlparser.y')
-rw-r--r--kexi/kexidb/parser/sqlparser.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/kexi/kexidb/parser/sqlparser.y b/kexi/kexidb/parser/sqlparser.y
index ee8bba6b..1b74def7 100644
--- a/kexi/kexidb/parser/sqlparser.y
+++ b/kexi/kexidb/parser/sqlparser.y
@@ -1070,11 +1070,11 @@ aExpr9:
val = (int)$1;
else if ($1 <= UINT_MAX && $1 >= 0)
val = (uint)$1;
- else if ($1 <= (Q_LLONG)LLONG_MAX && $1 >= (Q_LLONG)LLONG_MIN)
- val = (Q_LLONG)$1;
+ else if ($1 <= (TQ_LLONG)LLONG_MAX && $1 >= (TQ_LLONG)LLONG_MIN)
+ val = (TQ_LLONG)$1;
// if ($1 < ULLONG_MAX)
-// val = (Q_ULLONG)$1;
+// val = (TQ_ULLONG)$1;
//TODO ok?
$$ = new ConstExpr( INTEGER_CONST, val );