Changeset: e29ee223f64d for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/e29ee223f64d
Modified Files:
sql/server/sql_parser.y
Branch: default
Log Message:
Switch to DECIMAL AS
diffs (17 lines):
diff --git a/sql/server/sql_parser.y b/sql/server/sql_parser.y
--- a/sql/server/sql_parser.y
+++ b/sql/server/sql_parser.y
@@ -3059,11 +3059,11 @@ opt_decimal_seps:
{ dlist *l = L();
append_string(l, sa_strdup(SA, "."));
$$ = l; }
- | sqlDECIMAL DELIMITERS string
+ | sqlDECIMAL opt_as string
{ dlist *l = L();
append_string(l, $3);
$$ = l; }
- | sqlDECIMAL DELIMITERS string ',' string
+ | sqlDECIMAL opt_as string ',' string
{ dlist *l = L();
append_string(l, $3);
append_string(l, $5);
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]