Skip to content

Commit

Permalink
[libdbms] Add _TYPE suffix to JDBC connector
Browse files Browse the repository at this point in the history
  • Loading branch information
romainr committed Jan 27, 2017
1 parent d615acd commit 5c1b1fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions desktop/libs/librdbms/src/librdbms/jdbc.py
Expand Up @@ -16,8 +16,8 @@
# limitations under the License.

import logging
import sys
import os
import sys

LOG = logging.getLogger(__name__)

Expand Down Expand Up @@ -123,7 +123,7 @@ def description(self):
else:
return [[
self._meta.getColumnName(i),
self._meta.getColumnTypeName(i),
self._meta.getColumnTypeName(i) + '_TYPE',
self._meta.getColumnDisplaySize(i),
self._meta.getColumnDisplaySize(i),
self._meta.getPrecision(i),
Expand Down

0 comments on commit 5c1b1fb

Please sign in to comment.