summaryrefslogtreecommitdiff
path: root/test/dialect/mssql.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-08-21 01:31:23 +0000
committerJason Kirtland <jek@discorporate.us>2007-08-21 01:31:23 +0000
commit6228e72cb15be6e84260440d20369c91858b4640 (patch)
treee73b103dae905c13f3739bc4e94719974d72b9e1 /test/dialect/mssql.py
parent83eb2431247ff3392a984f034fb3ffd009d81009 (diff)
downloadsqlalchemy-6228e72cb15be6e84260440d20369c91858b4640.tar.gz
- omitted 'table' and 'column' from 'from sqlalchemy import *'
- also omitted all modules and classes that aren't expicitly public - omitted 'Smallinteger' (small i), but it's still in schema - omitted NullType-related items from types.__all__ - patched up a few tests to use sql.table and sql.column, other related.
Diffstat (limited to 'test/dialect/mssql.py')
-rwxr-xr-xtest/dialect/mssql.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/mssql.py b/test/dialect/mssql.py
index 781f27029..eeadde2ff 100755
--- a/test/dialect/mssql.py
+++ b/test/dialect/mssql.py
@@ -1,6 +1,7 @@
import testbase
import re
from sqlalchemy import *
+from sqlalchemy.sql import table, column
from sqlalchemy.databases import mssql
from testlib import *