Revision 3707
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql_gen.py | ||
---|---|---|
996 | 996 |
sep) |
997 | 997 |
|
998 | 998 |
def merge_not_null(db, sep, values): |
999 |
return ArrayMerge(sep, [try_mk_not_null(db, v) for v in values])
|
|
999 |
return ArrayMerge(sep, map(to_text, values))
|
|
1000 | 1000 |
|
1001 | 1001 |
##### Table exprs |
1002 | 1002 |
|
Also available in: Unified diff
sql_gen.py: merge_not_null(): For clarity, use to_text() to represent NULL as the string 'NULL' instead of as the null sentinel for the column's type