Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2025 10:17 AM
The following works:
response = w.statement_execution.execute_statement(
statement='ALTER TABLE users ALTER COLUMN :col_name SET NOT NULL',
warehouse_id='<warehouseID>',
parameters=[sql.StatementParameterListItem(name='col_name' value='user', type='STRING')]
)