Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsMixedSql()

bool System.Data.BinaryNode.IsMixedSql ( StorageType left,
StorageType right )
inlineprivateinherited

Definition at line 993 of file BinaryNode.cs.

994 {
995 if (!ExpressionNode.IsSignedSql(left) || !ExpressionNode.IsUnsignedSql(right))
996 {
997 if (ExpressionNode.IsUnsignedSql(left))
998 {
999 return ExpressionNode.IsSignedSql(right);
1000 }
1001 return false;
1002 }
1003 return true;
1004 }
ExpressionNode(DataTable table)

References System.Data.ExpressionNode.IsSignedSql(), and System.Data.ExpressionNode.IsUnsignedSql().

Referenced by System.Data.BinaryNode.ResultSqlType().