1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix the coding style.

This commit is contained in:
kostja@bodhi.(none)
2007-07-20 19:52:25 +04:00
parent 6352d006a4
commit a6abf20f2e
2 changed files with 31 additions and 31 deletions

View File

@ -1239,19 +1239,19 @@ public:
}
/** Get the raw query buffer. */
const char* get_buf()
const char *get_buf()
{
return m_buf;
}
/** Get the pre-processed query buffer. */
const char* get_cpp_buf()
const char *get_cpp_buf()
{
return m_cpp_buf;
}
/** Get the end of the raw query buffer. */
const char* get_end_of_query()
const char *get_end_of_query()
{
return m_end_of_query;
}
@ -1279,43 +1279,43 @@ public:
}
/** Get the token start position, in the raw buffer. */
const char* get_tok_start()
const char *get_tok_start()
{
return m_tok_start;
}
/** Get the token start position, in the pre-processed buffer. */
const char* get_cpp_tok_start()
const char *get_cpp_tok_start()
{
return m_cpp_tok_start;
}
/** Get the token end position, in the raw buffer. */
const char* get_tok_end()
const char *get_tok_end()
{
return m_tok_end;
}
/** Get the token end position, in the pre-processed buffer. */
const char* get_cpp_tok_end()
const char *get_cpp_tok_end()
{
return m_cpp_tok_end;
}
/** Get the previous token start position, in the raw buffer. */
const char* get_tok_start_prev()
const char *get_tok_start_prev()
{
return m_tok_start_prev;
}
/** Get the current stream pointer, in the raw buffer. */
const char* get_ptr()
const char *get_ptr()
{
return m_ptr;
}
/** Get the current stream pointer, in the pre-processed buffer. */
const char* get_cpp_ptr()
const char *get_cpp_ptr()
{
return m_cpp_ptr;
}
@ -1365,22 +1365,22 @@ public:
private:
/** Pointer to the current position in the raw input stream. */
const char* m_ptr;
const char *m_ptr;
/** Starting position of the last token parsed, in the raw buffer. */
const char* m_tok_start;
const char *m_tok_start;
/** Ending position of the previous token parsed, in the raw buffer. */
const char* m_tok_end;
const char *m_tok_end;
/** End of the query text in the input stream, in the raw buffer. */
const char* m_end_of_query;
const char *m_end_of_query;
/** Starting position of the previous token parsed, in the raw buffer. */
const char* m_tok_start_prev;
const char *m_tok_start_prev;
/** Begining of the query text in the input stream, in the raw buffer. */
const char* m_buf;
const char *m_buf;
/** Length of the raw buffer. */
uint m_buf_length;
@ -1389,28 +1389,28 @@ private:
bool m_echo;
/** Pre-processed buffer. */
char* m_cpp_buf;
char *m_cpp_buf;
/** Pointer to the current position in the pre-processed input stream. */
char* m_cpp_ptr;
char *m_cpp_ptr;
/**
Starting position of the last token parsed,
in the pre-processed buffer.
*/
const char* m_cpp_tok_start;
const char *m_cpp_tok_start;
/**
Starting position of the previous token parsed,
in the pre-procedded buffer.
*/
const char* m_cpp_tok_start_prev;
const char *m_cpp_tok_start_prev;
/**
Ending position of the previous token parsed,
in the pre-processed buffer.
*/
const char* m_cpp_tok_end;
const char *m_cpp_tok_end;
/** UTF8-body buffer created during parsing. */
char *m_body_utf8;
@ -1433,7 +1433,7 @@ public:
Position of ';' in the stream, to delimit multiple queries.
This delimiter is in the raw buffer.
*/
const char* found_semicolon;
const char *found_semicolon;
/** SQL_MODE = IGNORE_SPACE. */
bool ignore_space;