We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 378c0e9 commit a406863Copy full SHA for a406863
tests/test_implementations/test_memory_sqlalchemy/api_test/__init__.py
@@ -24,7 +24,7 @@ class UntitledTable256(Base):
24
primary_key = Column(Integer, primary_key=True, autoincrement=True)
25
bool_value = Column(Boolean, nullable=False, default=False)
26
bytea_value = Column(LargeBinary)
27
- char_value = Column(CHAR(10))
+ char_value = Column(CHAR(10,collation='NOCASE'))
28
date_value = Column(Date)
29
float4_value = Column(Float, nullable=False)
30
float8_value = Column(Float(53), nullable=False, default=10.10)
0 commit comments