Code Duplication    Length = 6-6 lines in 2 locations

lib/stores/modules/mysql_compiler.php 1 location

@@ 72-77 (lines=6) @@
69
					}
70
				}
71
			break;
72
			case 'ident':
73
				$table=$this->tbl_prefix.$node["table"];
74
				$field=$node["field"];
75
				$this->used_tables[$table]=$table;
76
				$result=" $table.$field ";
77
			break;
78
			case 'custom':
79
				$table = $this->tbl_prefix."prop_custom";
80
				$field = $node["field"];

lib/stores/modules/postgresql_compiler.php 1 location

@@ 81-86 (lines=6) @@
78
					}
79
				}
80
			break;
81
			case 'ident':
82
				$table=$this->tbl_prefix.$node["table"];
83
				$field=$node["field"];
84
				$this->used_tables[$table]=$table;
85
				$result=" $table.$field ";
86
			break;
87
			case 'custom':
88
				$table = $this->tbl_prefix."prop_custom";
89
				$field = $node["field"];