aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-08-13 13:43:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-08-13 13:43:41 +0200
commit8100d903ef92d2ab3c789317fd1f187089ece8a7 (patch)
treeaeaa5a93caecf7c7b7ab745d433b80dfbea8bcf2
parent8c323dfb3017e2d405dd548c9566711359b3e573 (diff)
Use proper diagnostics format
-rw-r--r--odb/mysql/context.cxx13
1 files changed, 7 insertions, 6 deletions
diff --git a/odb/mysql/context.cxx b/odb/mysql/context.cxx
index f3b9bbb..b7707cb 100644
--- a/odb/mysql/context.cxx
+++ b/odb/mysql/context.cxx
@@ -331,7 +331,8 @@ namespace mysql
if (r.type == sql_type::invalid)
{
- cerr << m.file () << ":" << m.line () << ":" << m.column ();
+ cerr << m.file () << ":" << m.line () << ":" <<
+ m.column () << ":";
if (tt == sql_token::t_identifier)
cerr << " error: unknown MySQL type '" <<
@@ -367,7 +368,7 @@ namespace mysql
if (t.type () != sql_token::t_int_lit)
{
cerr << m.file () << ":" << m.line () << ":" << m.column ()
- << " error: integer range expected in MySQL type "
+ << ": error: integer range expected in MySQL type "
<< "declaration" << endl;
throw generation_failed ();
@@ -379,7 +380,7 @@ namespace mysql
if (!(is >> v && is.eof ()))
{
cerr << m.file () << ":" << m.line () << ":" << m.column ()
- << " error: invalid range value '" << t.literal ()
+ << ": error: invalid range value '" << t.literal ()
<< "'in MySQL type declaration" << endl;
throw generation_failed ();
@@ -402,7 +403,7 @@ namespace mysql
if (t.punctuation () != sql_token::p_rparen)
{
cerr << m.file () << ":" << m.line () << ":" << m.column ()
- << " error: expected ')' in MySQL type declaration"
+ << ": error: expected ')' in MySQL type declaration"
<< endl;
throw generation_failed ();
@@ -447,7 +448,7 @@ namespace mysql
if (r.type == sql_type::invalid)
{
cerr << m.file () << ":" << m.line () << ":" << m.column ()
- << " error: incomplete MySQL type declaration" << endl;
+ << ": error: incomplete MySQL type declaration" << endl;
throw generation_failed ();
}
@@ -465,7 +466,7 @@ namespace mysql
catch (sql_lexer::invalid_input const& e)
{
cerr << m.file () << ":" << m.line () << ":" << m.column ()
- << " error: invalid MySQL type declaration: " << e.message << endl;
+ << ": error: invalid MySQL type declaration: " << e.message << endl;
throw generation_failed ();
}