aboutsummaryrefslogtreecommitdiff
path: root/odb/relational/oracle/context.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-22 15:44:52 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-22 15:44:52 +0200
commitc0b30bd6639ad43efbb8d7723ad0ad8c7b3991e0 (patch)
tree97f5e214dfa166cfec411183a01b45b010597492 /odb/relational/oracle/context.hxx
parentfd706a1f86e48ae9b22d3bee017ff67220c0505e (diff)
Rename range to precision in Oracle generator
Diffstat (limited to 'odb/relational/oracle/context.hxx')
-rw-r--r--odb/relational/oracle/context.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/relational/oracle/context.hxx b/odb/relational/oracle/context.hxx
index e130dfa..ea81136 100644
--- a/odb/relational/oracle/context.hxx
+++ b/odb/relational/oracle/context.hxx
@@ -55,14 +55,14 @@ namespace relational
};
sql_type () :
- type (invalid), range (false), scale (false), byte_semantics (true)
+ type (invalid), prec (false), scale (false), byte_semantics (true)
{
}
core_type type;
- bool range;
- unsigned short range_value; // Oracle max value is 4000.
+ bool prec;
+ unsigned short prec_value; // Oracle max value is 4000.
bool scale;
short scale_value; // Oracle min value is -84. Max value is 127.