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 970f918 commit fe5f79cCopy full SHA for fe5f79c
pgml-dashboard/app/templates/uploader/uploaded.html
@@ -22,7 +22,7 @@ <h2><span class="material-symbols-outlined">table_rows</span>Next Steps</h2>
22
</div>
23
<p> All columns were converted to text, so you'll need to cast them to the appropriate data type before training a model, for example:</p>
24
<div class="markdown-body">
25
- <pre><code class="language-sql">CREATE MATERIALIZED VIEW public.{{ table_name }}_view AS
+ <pre><code class="language-sql">CREATE VIEW public.{{ table_name }}_view AS
26
SELECT {% for column in columns %}
27
CAST({{ column }} AS FLOAT4){% if not forloop.last %},{% else %}
28
{% endif %}{% endfor %}FROM public.{{ table_name }}</code></pre>
0 commit comments