You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.Flags().StringArray("param", nil, "typed query parameter in key=value format (repeatable); supported types: text, number (stringified, e.g. '30'), datetime (YYYY-MM-DD HH:mm:ss), enum")
38
-
cmd.Flags().String("performance", "", `engine tier override: "free", "medium", or "large"; omit to let the API auto-select based on your plan`)
38
+
cmd.Flags().String("performance", "", `engine tier override: "small", "medium", or "large"; omit to let the API auto-select based on your plan`)
39
39
cmd.Flags().Int("limit", 0, "maximum number of result rows to return (0 = all available rows)")
40
40
cmd.Flags().Bool("no-wait", false, "submit the execution and exit immediately, printing only the execution ID and state")
41
41
cmd.Flags().Int("timeout", 300, "maximum seconds to wait for the execution to complete before timing out")
cmd.Flags().String("sql", "", "the SQL query text in DuneSQL dialect (required)")
38
38
_=cmd.MarkFlagRequired("sql")
39
39
cmd.Flags().StringArray("param", nil, "typed query parameter in key=value format (repeatable); supported types: text, number (stringified, e.g. '30'), datetime (YYYY-MM-DD HH:mm:ss), enum")
40
-
cmd.Flags().String("performance", "", `engine tier override: "free", "medium", or "large"; omit to let the API auto-select based on your plan`)
40
+
cmd.Flags().String("performance", "", `engine tier override: "small", "medium", or "large"; omit to let the API auto-select based on your plan`)
41
41
cmd.Flags().Int("limit", 0, "maximum number of result rows to return (0 = all available rows)")
42
42
cmd.Flags().Bool("no-wait", false, "submit the execution and exit immediately, printing only the execution ID and state")
43
43
cmd.Flags().Int("timeout", 300, "maximum seconds to wait for the execution to complete before timing out")
0 commit comments