mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-26 02:22:13 -04:00
4b614b9b35
- went through examples/ and cleaned out excess list() calls
29 lines
746 B
Python
29 lines
746 B
Python
from sqlalchemy import *
|
|
from sqlalchemy import sql
|
|
from sqlalchemy.databases import sybase
|
|
from sqlalchemy.testing import *
|
|
|
|
|
|
class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
|
|
__dialect__ = sybase.dialect()
|
|
|
|
def test_extract(self):
|
|
t = sql.table('t', sql.column('col1'))
|
|
|
|
mapping = {
|
|
'day': 'day',
|
|
'doy': 'dayofyear',
|
|
'dow': 'weekday',
|
|
'milliseconds': 'millisecond',
|
|
'millisecond': 'millisecond',
|
|
'year': 'year',
|
|
}
|
|
|
|
for field, subst in list(mapping.items()):
|
|
self.assert_compile(
|
|
select([extract(field, t.c.col1)]),
|
|
'SELECT DATEPART("%s", t.col1) AS anon_1 FROM t' % subst)
|
|
|
|
|
|
|