MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / Text

Class Text

lib/sqlalchemy/sql/sqltypes.py:295–304  ·  view source on GitHub ↗

A variably sized string type. In SQL, usually corresponds to CLOB or TEXT. In general, TEXT objects do not have a length; while some databases will accept a length argument here, it will be rejected by others.

Source from the content-addressed store, hash-verified

293
294
295class Text(String):
296 """A variably sized string type.
297
298 In SQL, usually corresponds to CLOB or TEXT. In general, TEXT objects
299 do not have a length; while some databases will accept a length
300 argument here, it will be rejected by others.
301
302 """
303
304 __visit_name__ = "text"
305
306
307class Unicode(String):

Callers 13

test_text_plainMethod · 0.90
test_text_lengthMethod · 0.90
test_text_collationMethod · 0.90
related_dataMethod · 0.90
test_char_zeroMethod · 0.90
test_string_typesMethod · 0.90
PG_NODE_TREEClass · 0.85

Calls

no outgoing calls

Tested by 10

test_text_plainMethod · 0.72
test_text_lengthMethod · 0.72
test_text_collationMethod · 0.72
test_char_zeroMethod · 0.72
test_string_typesMethod · 0.72