comparison core/lib/Drupal/Core/Database/Schema.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
17 */ 17 */
18 protected $connection; 18 protected $connection;
19 19
20 /** 20 /**
21 * The placeholder counter. 21 * The placeholder counter.
22 *
23 * @var int
22 */ 24 */
23 protected $placeholder = 0; 25 protected $placeholder = 0;
24 26
25 /** 27 /**
26 * Definition of prefixInfo array structure. 28 * Definition of prefixInfo array structure.
28 * Rather than redefining DatabaseSchema::getPrefixInfo() for each driver, 30 * Rather than redefining DatabaseSchema::getPrefixInfo() for each driver,
29 * by defining the defaultSchema variable only MySQL has to re-write the 31 * by defining the defaultSchema variable only MySQL has to re-write the
30 * method. 32 * method.
31 * 33 *
32 * @see DatabaseSchema::getPrefixInfo() 34 * @see DatabaseSchema::getPrefixInfo()
35 *
36 * @var string
33 */ 37 */
34 protected $defaultSchema = 'public'; 38 protected $defaultSchema = 'public';
35 39
36 /** 40 /**
37 * A unique identifier for this query object. 41 * A unique identifier for this query object.