We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3711fea commit f6f9690Copy full SHA for f6f9690
plugins/extractors/maxcompute/client/client.go
@@ -34,7 +34,9 @@ func New(conf config.Config) (*Client, error) {
34
if err != nil {
35
return nil, err
36
}
37
- isSchemaEnabled := properties.Get("odps.namespace.schema") == "true"
+
38
+ const schemaProperty = "odps.schema.model.enabled"
39
+ isSchemaEnabled := properties.Get(schemaProperty) == "true"
40
41
return &Client{
42
client: client,
0 commit comments