diff --git a/Datastream/metadata/V1/DatastreamResources.php b/Datastream/metadata/V1/DatastreamResources.php
index 44dcefb3f1f2..d569603d15c0 100644
Binary files a/Datastream/metadata/V1/DatastreamResources.php and b/Datastream/metadata/V1/DatastreamResources.php differ
diff --git a/Datastream/src/V1/MysqlColumn.php b/Datastream/src/V1/MysqlColumn.php
index 9cbc0fc80123..3207d73d75ee 100644
--- a/Datastream/src/V1/MysqlColumn.php
+++ b/Datastream/src/V1/MysqlColumn.php
@@ -58,6 +58,18 @@ class MysqlColumn extends \Google\Protobuf\Internal\Message
* Generated from protobuf field int32 ordinal_position = 7;
*/
private $ordinal_position = 0;
+ /**
+ * Column precision.
+ *
+ * Generated from protobuf field int32 precision = 8;
+ */
+ private $precision = 0;
+ /**
+ * Column scale.
+ *
+ * Generated from protobuf field int32 scale = 9;
+ */
+ private $scale = 0;
/**
* Constructor.
@@ -80,6 +92,10 @@ class MysqlColumn extends \Google\Protobuf\Internal\Message
* Whether or not the column can accept a null value.
* @type int $ordinal_position
* The ordinal position of the column in the table.
+ * @type int $precision
+ * Column precision.
+ * @type int $scale
+ * Column scale.
* }
*/
public function __construct($data = NULL) {
@@ -271,5 +287,57 @@ public function setOrdinalPosition($var)
return $this;
}
+ /**
+ * Column precision.
+ *
+ * Generated from protobuf field int32 precision = 8;
+ * @return int
+ */
+ public function getPrecision()
+ {
+ return $this->precision;
+ }
+
+ /**
+ * Column precision.
+ *
+ * Generated from protobuf field int32 precision = 8;
+ * @param int $var
+ * @return $this
+ */
+ public function setPrecision($var)
+ {
+ GPBUtil::checkInt32($var);
+ $this->precision = $var;
+
+ return $this;
+ }
+
+ /**
+ * Column scale.
+ *
+ * Generated from protobuf field int32 scale = 9;
+ * @return int
+ */
+ public function getScale()
+ {
+ return $this->scale;
+ }
+
+ /**
+ * Column scale.
+ *
+ * Generated from protobuf field int32 scale = 9;
+ * @param int $var
+ * @return $this
+ */
+ public function setScale($var)
+ {
+ GPBUtil::checkInt32($var);
+ $this->scale = $var;
+
+ return $this;
+ }
+
}